Fixed warnings. Hopefully without breaking anything.

svn-id: r35420
This commit is contained in:
Torbjörn Andersson 2008-12-18 05:04:55 +00:00
parent 4ceecdb25f
commit 50563cbcce

View File

@ -772,7 +772,7 @@ void SMKPlayer::queueCompressedBuffer(byte *buffer, int bufferSize, int unpacked
cur = hi + lo; // adding takes care of possible overflows
*curPointer++ = cur & 0xFF; // low
curPos++;
*curPointer++ = cur & 0xFF00; // high
*curPointer++ = (cur >> 8) & 0xFF; // high
curPos++;
}
@ -782,7 +782,7 @@ void SMKPlayer::queueCompressedBuffer(byte *buffer, int bufferSize, int unpacked
cur = hi + lo; // adding takes care of possible overflows
*curPointer++ = cur & 0xFF; // low
curPos++;
*curPointer++ = cur & 0xFF00; // high
*curPointer++ = (cur >> 8) & 0xFF; // high
curPos++;
}
}