mirror of https://github.com/mgba-emu/mgba.git
VFS: Fix reading 7z archives without rewinding first
This commit is contained in:
parent
6d0f370630
commit
be42f298da
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
||||||
|
0.5.0: (Future)
|
||||||
|
Bugfixes:
|
||||||
|
- VFS: Fix reading 7z archives without rewinding first
|
||||||
|
|
||||||
0.4.0: (2016-02-02)
|
0.4.0: (2016-02-02)
|
||||||
Features:
|
Features:
|
||||||
- Officially supported ports for the Nintendo 3DS, Wii, and PlayStation Vita
|
- Officially supported ports for the Nintendo 3DS, Wii, and PlayStation Vita
|
||||||
|
|
|
@ -103,7 +103,7 @@ struct VDir* VDirOpen7z(const char* path, int flags) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
vd->dirent.index = 0;
|
vd->dirent.index = -1;
|
||||||
vd->dirent.utf8 = 0;
|
vd->dirent.utf8 = 0;
|
||||||
vd->dirent.vd = vd;
|
vd->dirent.vd = vd;
|
||||||
vd->dirent.d.name = _vde7zName;
|
vd->dirent.d.name = _vde7zName;
|
||||||
|
|
Loading…
Reference in New Issue