summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-09 17:08:25 -0700
committerGitHub <noreply@github.com>2018-07-09 17:08:25 -0700
commitef2c955db59d02de9f9f6576ee68bc7c5cadbd17 (patch)
tree053c8ac3315ffe226a52a3b41eaaf5833103e252 /src/common
parentdacc89b38b8b5194e9c8c911d5624df870477e5d (diff)
parent476e0fae4c7c07460faf212e5e15eff21f9fd855 (diff)
Merge pull request #635 from FearlessTobi/port-crashfix
Port #3474 from Citra: Do not crash on unimplemented code in debug build
Diffstat (limited to 'src/common')
-rw-r--r--src/common/assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/assert.h b/src/common/assert.h
index 655446f34..0d4eddc19 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__)