From 040cc27a40df3a6485d34f9a7479e015bd6817d8 Mon Sep 17 00:00:00 2001 From: Exzap <13877693+Exzap@users.noreply.github.com> Date: Sun, 12 Mar 2023 08:35:25 +0100 Subject: [PATCH] Logging: Fix typo in preprocessor constant name --- src/Cemu/Logging/CemuDebugLogging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cemu/Logging/CemuDebugLogging.h b/src/Cemu/Logging/CemuDebugLogging.h index e386242e..7724c798 100644 --- a/src/Cemu/Logging/CemuDebugLogging.h +++ b/src/Cemu/Logging/CemuDebugLogging.h @@ -2,7 +2,7 @@ // printf-style macros that are only active in non-release builds -#ifndef CEMU_DEBUG_ASSERTS +#ifndef CEMU_DEBUG_ASSERT #define debug_printf(...) static void debugBreakpoint() { } #else