mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 08:40:59 +00:00
Fixed warnings. Hopefully without breaking anything.
svn-id: r35420
This commit is contained in:
parent
4ceecdb25f
commit
50563cbcce
@ -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++;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user