Core: apply Dolphin OnFrame patches right after boot

This commit is contained in:
Tillmann Karras
2024-10-16 02:35:16 +01:00
parent 904ac5592d
commit fd95607700
3 changed files with 11 additions and 3 deletions

View File

@ -295,6 +295,13 @@ void RemoveMemoryPatch(std::size_t index)
std::erase(s_on_frame_memory, index);
}
static void ApplyStartupPatches(Core::System& system)
{
ASSERT(Core::IsCPUThread());
Core::CPUThreadGuard guard(system);
ApplyPatches(guard, s_on_frame);
}
bool ApplyFramePatches(Core::System& system)
{
const auto& ppc_state = system.GetPPCState();
@ -332,10 +339,11 @@ void Shutdown()
Gecko::Shutdown();
}
void Reload()
void Reload(Core::System& system)
{
Shutdown();
LoadPatches();
ApplyStartupPatches(system);
}
} // namespace PatchEngine