diff options
| author | Rachel Bryk <RachelBryk@gmail.com> | 2014-06-30 17:28:45 -0400 |
|---|---|---|
| committer | Rachel Bryk <RachelBryk@gmail.com> | 2014-06-30 17:28:45 -0400 |
| commit | 899274445bf83bb73bbd6f18e099fd458ec55fb3 (patch) | |
| tree | 9aea8a09ad3ec89897a810545b72127323f02f08 /Source/Core | |
| parent | aec4cc7e29d0a946f02a876cb28beb8534df6173 (diff) | |
Fix patches not being loaded when running real gc bios.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Boot/Boot.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index bd0baccf57..fd6a9ac5dd 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -241,6 +241,11 @@ bool CBoot::BootUp() // If we can't load the bootrom file we HLE it instead EmulatedBS2(_StartupPara.bWii); } + else + { + // Load patches if they weren't already + PatchEngine::LoadPatches(); + } // Scan for common HLE functions if (_StartupPara.bSkipIdle && !_StartupPara.bEnableDebugging) |
