summaryrefslogtreecommitdiff
path: root/src/common/common_funcs.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-24 22:50:36 -0800
committerbunnei <bunneidev@gmail.com>2021-01-28 21:42:26 -0800
commit091e9e8c4100308c3c8d367f7fd32290cd053f40 (patch)
tree774c15f0f4b052fe3c3e4840fe0eb01b89ab2708 /src/common/common_funcs.h
parent6e953f7f0294d945ba9d6f08350d5dccb0d76075 (diff)
common: common_funcs: Log error on R_UNLESS.
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r--src/common/common_funcs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 842d62ca7..71d136d4a 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -97,6 +97,9 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
#define R_UNLESS(expr, res) \
{ \
if (!(expr)) { \
+ if (res.IsError()) { \
+ LOG_CRITICAL(Kernel, "Failed with error {}", res.raw); \
+ } \
return res; \
} \
}