mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 10:20:26 +01:00
Some warning solved
This commit is contained in:
parent
cf7056b4d6
commit
e37a80ef83
|
@ -64,7 +64,7 @@ inline void CRC_AddFLOAT(ULONG &ulCRC, FLOAT f)
|
|||
// add memory block to a CRC value
|
||||
inline void CRC_AddBlock(ULONG &ulCRC, UBYTE *pubBlock, ULONG ulSize)
|
||||
{
|
||||
for( INDEX i=0; i<ulSize; i++) CRC_AddBYTE( ulCRC, pubBlock[i]);
|
||||
for( INDEX i=0; (ULONG)i<ulSize; i++) CRC_AddBYTE( ulCRC, pubBlock[i]);
|
||||
};
|
||||
|
||||
// end crc calculation
|
||||
|
|
Loading…
Reference in New Issue
Block a user