mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07: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