From 2655e45f44f32bd6dd03b067de375bca4ed2dd27 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 28 May 2016 16:55:03 -0700 Subject: [PATCH] GBA: Fix file being closed too soon --- src/gba/gba.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gba/gba.c b/src/gba/gba.c index a74688bf3..08d82eee2 100644 --- a/src/gba/gba.c +++ b/src/gba/gba.c @@ -123,7 +123,6 @@ void GBAUnloadROM(struct GBA* gba) { #ifndef _3DS gba->romVf->unmap(gba->romVf, gba->pristineRom, gba->pristineRomSize); #endif - gba->romVf->close(gba->romVf); gba->pristineRom = 0; gba->romVf = 0; }