all repos — mgba @ be7ca4d5adbace2a58658c7215ae8e3fb268aa43

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

be7ca4d5adbace2a58658c7215ae8e3fb268aa43

parent

4ad9c39d7b82ec99a466eea7ce258ef2d293cdac

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

jump to
M CHANGESCHANGES

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

+0.4.1: (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;