mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Core: apply Dolphin OnFrame patches right after boot
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user