diff options
author | twinaphex | 2017-08-14 07:40:25 +0200 |
---|---|---|
committer | twinaphex | 2017-08-14 07:40:25 +0200 |
commit | 75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3 (patch) | |
tree | 735d2a6d8c00b7d2a4145da5a3f87c9a2be60bd8 | |
parent | 262051693823522c34a3e19904bf4ed9f1877e65 (diff) | |
download | snes9x2005-75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3.tar.gz snes9x2005-75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3.tar.bz2 snes9x2005-75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3.zip |
Settings.NoPatch is not available
-rw-r--r-- | source/memmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/memmap.c b/source/memmap.c index d116330..87cfc32 100644 --- a/source/memmap.c +++ b/source/memmap.c @@ -598,8 +598,7 @@ again: if (!TotalFileSize) return false; // it ends here - else if (!Settings.NoPatch) - CheckForIPSPatch(filename, Memory.HeaderCount != 0, &TotalFileSize); + CheckForIPSPatch(filename, Memory.HeaderCount != 0, &TotalFileSize); #endif //fix hacked games here. if ((strncmp("HONKAKUHA IGO GOSEI", (char*)&Memory.ROM[0x7FC0], 19) == 0) && (Memory.ROM[0x7FD5] != 0x31)) |