Skip to content
Snippets Groups Projects
Commit 2d00b03b authored by Steven Noonan's avatar Steven Noonan
Browse files

zlib/ioapi.c: add 'return' to fseek64_file_func


This was causing savegame zip files to be "invalid" according to everything but ToME.

Signed-off-by: default avatarSteven Noonan <steven@uplinklabs.net>
parent 5593184a
No related branches found
No related tags found
No related merge requests found
......@@ -180,6 +180,7 @@ static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T
}
ret = 0;
PHYSFS_seek((PHYSFS_file *)stream, offset);
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment