CQTexperiment
Chris Moeller 2014-04-16 19:02:12 -07:00
parent 7028972f59
commit be23bdb88a
1 changed files with 2 additions and 2 deletions

View File

@ -1348,8 +1348,8 @@ int playptmod_LoadMem(void *_p, const unsigned char *buf, unsigned long bufLengt
s->length -= s->iffSize;
// Relocate loopStart
if (s->loopStart >= ((int32_t)(((j) + 8) & 0xFFFFFFFE))) // even'ify unit
s->loopStart -= ((int32_t)(((j) + 8) & 0xFFFFFFFE));
if (s->loopStart >= ((int)(((j) + 8) & 0xFFFFFFFE))) // even'ify unit
s->loopStart -= ((int)(((j) + 8) & 0xFFFFFFFE));
// Fix loopStart+loopLength > sampleLength
while ((s->loopStart + s->loopLength) > s->length)