From 35f022ba5c5a87e5ac2952668ab40ad19787b807 Mon Sep 17 00:00:00 2001 From: SmookeFR <31390333+SmookeFR@users.noreply.github.com> Date: Fri, 6 Apr 2018 17:13:04 +0200 Subject: [PATCH] assert: do not crash on unimplemented code in debug build port from https://github.com/citra-emu/citra/pull/3474 --- src/common/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/assert.h b/src/common/assert.h index 655446f34a..0d4eddc194 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -52,5 +52,5 @@ __declspec(noinline, noreturn) #define DEBUG_ASSERT_MSG(_a_, _desc_, ...) #endif -#define UNIMPLEMENTED() DEBUG_ASSERT_MSG(false, "Unimplemented code!") +#define UNIMPLEMENTED() LOG_CRITICAL(Debug, "Unimplemented code!") #define UNIMPLEMENTED_MSG(...) ASSERT_MSG(false, __VA_ARGS__)