mirror of https://github.com/mgba-emu/mgba.git
VFS: Fix reading multiple files from a 7z archive
This commit is contained in:
parent
7bcda2daa9
commit
93121d9319
1
CHANGES
1
CHANGES
|
@ -32,6 +32,7 @@ Bugfixes:
|
|||
- Wii: Fix garbage flash at startup
|
||||
- VFS: Fix uninitialized varaible reading from 7z
|
||||
- GBA: Fix losing IRQs when CPSR I bit isn't cleared
|
||||
- VFS: Fix reading multiple files from a 7z archive
|
||||
Misc:
|
||||
- 3DS: Use blip_add_delta_fast for a small speed improvement
|
||||
- OpenGL: Log shader compilation failure
|
||||
|
|
|
@ -122,7 +122,6 @@ struct VDir* VDirOpen7z(const char* path, int flags) {
|
|||
bool _vf7zClose(struct VFile* vf) {
|
||||
struct VFile7z* vf7z = (struct VFile7z*) vf;
|
||||
IAlloc_Free(&vf7z->vd->allocImp, vf7z->outBuffer);
|
||||
File_Close(&vf7z->vd->archiveStream.file);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue