mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 11:19:58 +00:00
common: common_funcs: Change R_UNLESS to LOG_ERROR.
This commit is contained in:
parent
c8fe8247ee
commit
8d1afcb90f
1 changed files with 1 additions and 1 deletions
|
@ -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; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue