diff --git a/src/core/hle/Patches.cpp b/src/core/hle/Patches.cpp index 9af7930fe..74e0b3d2d 100644 --- a/src/core/hle/Patches.cpp +++ b/src/core/hle/Patches.cpp @@ -438,12 +438,12 @@ inline void EmuInstallPatch(const std::string FunctionName, const xbox::addr_xt return; } - auto result = g_FunctionHooks[FunctionName].Install((void*)(FunctionAddr), (void*)patch.patchFunc); - if (!result) { - printf("HLE: %s Patch Failed\n", FunctionName.c_str()); + auto success = g_FunctionHooks[FunctionName].Install((void*)(FunctionAddr), (void*)patch.patchFunc); + if (success) { + printf("HLE: %s Patched\n", FunctionName.c_str()); } else { - printf("HLE: %s Patched\n", FunctionName.c_str()); + printf("HLE: %s Patch Failed\n", FunctionName.c_str()); } }