mirror of https://github.com/PCSX2/pcsx2.git
Fixed patches/cheats still being applied on game reboot if they have been disabled.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3106 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
11c526e94f
commit
d8b0ac03e5
|
@ -616,8 +616,8 @@ void __fastcall eeGameStarting()
|
|||
if (0) ProfilerSetEnabled(true);
|
||||
}
|
||||
|
||||
ApplyPatch(0);
|
||||
ApplyCheat(0);
|
||||
if (EmuConfig.EnablePatches) ApplyPatch(0);
|
||||
if (EmuConfig.EnableCheats) ApplyCheat(0);
|
||||
}
|
||||
|
||||
void __fastcall eeloadReplaceOSDSYS()
|
||||
|
|
Loading…
Reference in New Issue