From 9a3c89835aeee5eff65b1e44fd4e5fe1633af208 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 11 Sep 2003 02:46:30 +0000 Subject: [PATCH] Load SDL even if we have GTK. --- stepmania/src/arch/arch_linux.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/arch_linux.h b/stepmania/src/arch/arch_linux.h index ed9e3fa13e..7c64fd157e 100644 --- a/stepmania/src/arch/arch_linux.h +++ b/stepmania/src/arch/arch_linux.h @@ -11,10 +11,11 @@ #ifdef HAVE_GTK #include "LoadingWindow/LoadingWindow_Gtk.h" -#else -#include "LoadingWindow/LoadingWindow_SDL.h" #endif +/* Load this even if we have GTK, since we can fall back if GTK is missing. */ +#include "LoadingWindow/LoadingWindow_SDL.h" + #include "ArchHooks/ArchHooks_Unix.h" #endif