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
This commit is contained in:
retro-wertz 2018-06-14 20:04:20 +08:00 committed by GitHub
parent 0047fa1a69
commit bdb164bd1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ void GameArea::LoadGame(const wxString& name)
else
saveType = cpuSaveType;
mirroringEnable = true;
mirroringEnable = false;
}
doMirroring(mirroringEnable);