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:
cottonvibes 2010-05-28 21:49:50 +00:00
parent 11c526e94f
commit d8b0ac03e5
1 changed files with 2 additions and 2 deletions

View File

@ -616,8 +616,8 @@ void __fastcall eeGameStarting()
if (0) ProfilerSetEnabled(true); if (0) ProfilerSetEnabled(true);
} }
ApplyPatch(0); if (EmuConfig.EnablePatches) ApplyPatch(0);
ApplyCheat(0); if (EmuConfig.EnableCheats) ApplyCheat(0);
} }
void __fastcall eeloadReplaceOSDSYS() void __fastcall eeloadReplaceOSDSYS()