aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-19 20:53:11 -0800
committerbunnei <bunneidev@gmail.com>2021-01-28 21:42:26 -0800
commitbb966d3e336ce1eee86daca5db00b29a63708d4c (patch)
treeb6b634ed496622d16b1f814839a53d9c510e120f /src
parentff186b2498e5f3119e0d03a859754722e1948c62 (diff)
common: common_funcs: Add useful kernel macro R_SUCCEED_IF.
Diffstat (limited to 'src')
-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 49c36765d4..842d62ca71 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -112,6 +112,9 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
} \
}
+/// Evaluates a boolean expression, and succeeds if that expression is true.
+#define R_SUCCEED_IF(expr) R_UNLESS(!(expr), RESULT_SUCCESS)
+
namespace Common {
[[nodiscard]] constexpr u32 MakeMagic(char a, char b, char c, char d) {