From ca9b02c3b82b34db5be100f18deb376476aec9f7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Jul 2003 20:53:11 +0000 Subject: [PATCH] simplify --- stepmania/src/MusicWheel.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index 48c546852b..d006a48480 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -188,15 +188,7 @@ MusicWheel::MusicWheel() } if( GAMESTATE->m_pCurSong == NULL ) - { - //XXX What to do here? - //No selectable songs from the wheel data... - //Cursor will be on Random/Roulette, but GAMESTATE->m_pCurSong will be NULL - //Should we error out? The user won't have an enjoyable game experience at this point... - //Should we find the pointer to the roulette entry? (the old way did that - maybe not intentional though) - //For now, write out to the debug log... - LOG->Trace("MusicWheel::MusicWheel() - No selectable songs found in WheelData!"); - } + LOG->Trace("MusicWheel::MusicWheel() - No selectable songs found in WheelData"); }