2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

common: common_funcs: Add useful kernel macro R_SUCCEED_IF.

This commit is contained in:
bunnei 2021-01-19 20:53:11 -08:00
parent ff186b2498
commit bb966d3e33

View file

@ -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) {