From bdb164bd1c37983870b9ffed9576589b2a040abb Mon Sep 17 00:00:00 2001 From: retro-wertz Date: Thu, 14 Jun 2018 20:04:20 +0800 Subject: [PATCH] Set mirroringEnable to false Set mirroring to false when rom loaded is not found in database. Making this true all the time causes some issue, for one with soft-patching some games. Fix this https://github.com/visualboyadvance-m/visualboyadvance-m/issues/182 --- src/wx/panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index e0843061..a8a71055 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -269,7 +269,7 @@ void GameArea::LoadGame(const wxString& name) else saveType = cpuSaveType; - mirroringEnable = true; + mirroringEnable = false; } doMirroring(mirroringEnable);