Skip to content
Permalink
Browse files
Merge pull request #10186 from leoetlino/hle-hbreload
HLE: Fix hook flag for HBReload
  • Loading branch information
JosJuice committed Oct 26, 2021
2 parents 7073a90 + 8cb51f2 commit 05b4aec
Showing 1 changed file with 1 addition and 1 deletion.
@@ -31,7 +31,7 @@ constexpr std::array<Hook, 23> os_patches{{
{"FAKE_TO_SKIP_0", HLE_Misc::UnimplementedFunction, HookType::Replace, HookFlag::Generic},

// Name doesn't matter, installed in CBoot::BootUp()
{"HBReload", HLE_Misc::HBReload, HookType::Replace, HookFlag::Generic},
{"HBReload", HLE_Misc::HBReload, HookType::Replace, HookFlag::Fixed},

// Debug/OS Support
{"OSPanic", HLE_OS::HLE_OSPanic, HookType::Replace, HookFlag::Debug},

0 comments on commit 05b4aec

Please sign in to comment.