summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-01-28 21:51:16 -0800
committerGravatar bunnei2021-01-28 21:51:16 -0800
commit8d1afcb90f59e000467466cd03e42f1488f5e44a (patch)
treeef52c0cd0a96f7734bb924f9f6e2f179dd356dfd
parentarm: dynarmic: Reintroduce JIT checks on SaveContext/LoadContext. (diff)
downloadyuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.gz
yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.tar.xz
yuzu-8d1afcb90f59e000467466cd03e42f1488f5e44a.zip
common: common_funcs: Change R_UNLESS to LOG_ERROR.
-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);
98 { \ 98 { \
99 if (!(expr)) { \ 99 if (!(expr)) { \
100 if (res.IsError()) { \ 100 if (res.IsError()) { \
101 LOG_CRITICAL(Kernel, "Failed with error {}", res.raw); \ 101 LOG_ERROR(Kernel, "Failed with result: {}", res.raw); \
102 } \ 102 } \
103 return res; \ 103 return res; \
104 } \ 104 } \