From 4044ec407378667a3092a8ca451de3b7ff673218 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 28 Apr 2004 23:36:18 +0000 Subject: [PATCH] we give a warning about this earlier, so let's not die because of it here --- stepmania/src/DifficultyIcon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/DifficultyIcon.cpp b/stepmania/src/DifficultyIcon.cpp index 08751260de..ed95b85ac2 100644 --- a/stepmania/src/DifficultyIcon.cpp +++ b/stepmania/src/DifficultyIcon.cpp @@ -64,7 +64,7 @@ void DifficultyIcon::SetFromDifficulty( PlayerNumber pn, Difficulty dc ) { case NUM_DIFFICULTIES: SetState( dc ); break; case NUM_DIFFICULTIES*2: SetState( dc*2+pn ); break; - default: FAIL_M( ssprintf( "%s: %i", this->GetID().c_str(), GetNumStates()) ); + default: m_bBlank = true; break; } }