From da0bdaef759d389f5cd31cfce3b440ed5d35d81c Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 6 Jan 2025 04:08:59 -0700 Subject: [PATCH] ui/xemu: Migrate #if to #ifdef check for debug builds --- ui/xemu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/xemu.c b/ui/xemu.c index a2324e6937..b6af57211b 100644 --- a/ui/xemu.c +++ b/ui/xemu.c @@ -718,7 +718,7 @@ static void sdl2_display_very_early_init(DisplayOptions *o) SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); char *title = g_strdup_printf("xemu | v%s" -#if XEMU_DEBUG_BUILD +#ifdef XEMU_DEBUG_BUILD " Debug" #endif , xemu_version);