esayeek
Member

Posts: 348
Registered: 07-02 |
oh my, i was really asleep, there's another bug in my program which breaks 16 bit support (not fair! i had nothing to test it on!). if anyone has any use for this thing, search and replace
code:
for (i = 0; i < doomnumsamples; i++)
{
fread (&ustemp, 1, 1, fil);
/* replace with */
for (i = 0; i < doomnumsamples; i++)
{
fread (&ustemp, 2, 1, fil);
|