Merge pull request #10186 from leoetlino/hle-hbreload

HLE: Fix hook flag for HBReload
This commit is contained in:
JosJuice 2021-10-26 22:00:25 +02:00 committed by GitHub
commit 05b4aecf18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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},