all repos — mgba @ be42f298dafae88507564533c7d622eda70caea8

mGBA Game Boy Advance Emulator

VFS: Fix reading 7z archives without rewinding first
Jeffrey Pfau jeffrey@endrift.com
Sun, 07 Feb 2016 22:24:07 -0800
commit

be42f298dafae88507564533c7d622eda70caea8

parent

6d0f370630355b203612368a4cb0cbc8754768b8

2 files changed, 5 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -1,3 +1,7 @@

+0.5.0: (Future) +Bugfixes: + - VFS: Fix reading 7z archives without rewinding first + 0.4.0: (2016-02-02) Features: - Officially supported ports for the Nintendo 3DS, Wii, and PlayStation Vita
M src/util/vfs/vfs-lzma.csrc/util/vfs/vfs-lzma.c

@@ -103,7 +103,7 @@ free(vd);

return 0; } - vd->dirent.index = 0; + vd->dirent.index = -1; vd->dirent.utf8 = 0; vd->dirent.vd = vd; vd->dirent.d.name = _vde7zName;