diff options
| author | 2021-01-28 21:51:16 -0800 | |
|---|---|---|
| committer | 2021-01-28 21:51:16 -0800 | |
| commit | 8d1afcb90f59e000467466cd03e42f1488f5e44a (patch) | |
| tree | ef52c0cd0a96f7734bb924f9f6e2f179dd356dfd | |
| parent | arm: dynarmic: Reintroduce JIT checks on SaveContext/LoadContext. (diff) | |
| download | yuzu-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.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); | |||
| 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 | } \ |