summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-29 06:51:16 +0100
committerbunnei <bunneidev@gmail.com>2021-01-29 06:51:16 +0100
commit8d1afcb90f59e000467466cd03e42f1488f5e44a (patch)
treeef52c0cd0a96f7734bb924f9f6e2f179dd356dfd
parentarm: dynarmic: Reintroduce JIT checks on SaveContext/LoadContext. (diff)
downloadyuzu-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
-rw-r--r--src/common/common_funcs.h2
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; \
} \