ANDROID: Compilation fix for 64-bit stream change

This commit is contained in:
Paul Gilbert 2021-07-08 20:37:39 -07:00
parent 454cc0fff9
commit 8e55f03b6d

View File

@ -89,7 +89,7 @@ uint32 AssetInputStream::read(void *dataPtr, uint32 dataSize) {
return readlen;
}
bool AssetInputStream::seek(int32 offset, int whence) {
bool AssetInputStream::seek(int64 offset, int whence) {
int res = AAsset_seek(_asset, offset, whence);
if (res == -1) {
return false;