From dafacaa0e94f1fdfe56694f7fc68598e33d69a64 Mon Sep 17 00:00:00 2001 From: Ryan Dortmans Date: Thu, 30 Sep 2004 08:21:15 +0000 Subject: [PATCH] Xbox: Use the Xbox loading screen. --- stepmania/src/arch/arch.cpp | 4 +--- stepmania/src/arch/arch_xbox.h | 5 +---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/stepmania/src/arch/arch.cpp b/stepmania/src/arch/arch.cpp index 8a2504a7f8..afc6eb94ae 100644 --- a/stepmania/src/arch/arch.cpp +++ b/stepmania/src/arch/arch.cpp @@ -13,9 +13,7 @@ LoadingWindow *MakeLoadingWindow() { #if defined(XBOX) - /* Using the SDL loading window without the SDLmain library causes the Xbox version - * to crash, so we'll use the Null loading window until an Xbox loading window is written */ - return new LoadingWindow_Null; + return new LoadingWindow_Xbox; #endif if( !PREFSMAN->m_bShowLoadingWindow ) diff --git a/stepmania/src/arch/arch_xbox.h b/stepmania/src/arch/arch_xbox.h index 7908d32e0d..fa26df77e6 100644 --- a/stepmania/src/arch/arch_xbox.h +++ b/stepmania/src/arch/arch_xbox.h @@ -3,10 +3,7 @@ /* Load drivers for Xbox. */ -/* Using the SDL loading window without loading the SDLmain library causes a crash - * so we'll use Null for now */ -//#include "LoadingWindow/LoadingWindow_SDL.h" -#include "LoadingWindow/LoadingWindow_Null.h" +#include "LoadingWindow/LoadingWindow_Xbox.h" #include "ArchHooks/ArchHooks_Xbox.h"