fix a type

This commit is contained in:
jiangzhengwenjz
2019-06-10 06:00:06 +08:00
parent 4580b3fb33
commit dcbeca2beb
+3 -3
View File
@@ -1578,7 +1578,7 @@ void TeachyTvComputeSingleMapTileBlockFromTilesetAndMetaTiles(u8 *blockBuf, u8 *
u16 TeachyTvComputePalIndexArrayEntryByMetaTile(u8 *palIndexArrayBuf, u16 metaTile) u16 TeachyTvComputePalIndexArrayEntryByMetaTile(u8 *palIndexArrayBuf, u16 metaTile)
{ {
u32 pal; u32 pal;
u32 i; u16 i;
int firstEntry; int firstEntry;
int temp; int temp;
@@ -1595,7 +1595,7 @@ u16 TeachyTvComputePalIndexArrayEntryByMetaTile(u8 *palIndexArrayBuf, u16 metaTi
{ {
while ( 1 ) while ( 1 )
{ {
i = ((i + 1) << 0x10) >> 0x10; ++i;
if ( i > 0xF ) if ( i > 0xF )
break; break;
temp = palIndexArrayBuf[i]; temp = palIndexArrayBuf[i];
@@ -1609,7 +1609,7 @@ u16 TeachyTvComputePalIndexArrayEntryByMetaTile(u8 *palIndexArrayBuf, u16 metaTi
} }
} }
} }
return (u16)(0xF - i); return (0xF - i);
} }
#ifdef NONMATCHING #ifdef NONMATCHING