* Fix infinite recursion in BinaryReader::readUint64

This commit is contained in:
Phillip Stephens 2014-06-29 13:26:08 -07:00
parent 3b76c4f02f
commit d113a91822
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ atInt64 BinaryReader::readInt64()
atUint64 BinaryReader::readUint64()
{
return readUint64();
return readInt64();
}
float BinaryReader::readFloat()