diff options
author | bunnei <bunneidev@gmail.com> | 2021-01-29 06:51:16 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-01-29 06:51:16 +0100 |
commit | 8d1afcb90f59e000467466cd03e42f1488f5e44a (patch) | |
tree | ef52c0cd0a96f7734bb924f9f6e2f179dd356dfd /src/common | |
parent | arm: dynarmic: Reintroduce JIT checks on SaveContext/LoadContext. (diff) | |
download | yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.gz yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.bz2 yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.lz yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.xz yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.zst yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_funcs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 71d136d4a..71b64e32a 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -98,7 +98,7 @@ __declspec(dllimport) void __stdcall DebugBreak(void); { \ if (!(expr)) { \ if (res.IsError()) { \ - LOG_CRITICAL(Kernel, "Failed with error {}", res.raw); \ + LOG_ERROR(Kernel, "Failed with result: {}", res.raw); \ } \ return res; \ } \ |