mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 03:31:40 +00:00
GRAPHICS: Silenced a warning
This commit is contained in:
parent
19d3972f16
commit
334e1cd675
@ -138,7 +138,7 @@ bool WinCursor::readFromStream(Common::SeekableReadStream &stream) {
|
||||
|
||||
if (bitsPerPixel == 1) {
|
||||
// 1bpp
|
||||
for (uint32 j = 0; j < (_width / 8); j++) {
|
||||
for (uint16 j = 0; j < (_width / 8); j++) {
|
||||
byte p = src[j];
|
||||
|
||||
for (int k = 0; k < 8; k++, rowDest++, p <<= 1) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user