Fix BinaryReader::read(int32 &one32BitInt)

This commit is contained in:
Martchus 2018-06-21 23:25:14 +02:00
parent 30adb1bc47
commit 0c7e7eb91d
1 changed files with 1 additions and 1 deletions

View File

@ -653,7 +653,7 @@ inline void BinaryReader::read(uint16 &one16BitUInt)
*/
inline void BinaryReader::read(int32 &one32BitInt)
{
one32BitInt = readInt16BE();
one32BitInt = readInt32BE();
}
/*!