From 16e3bef25762bab3114ced66c3953e9aa78a5053 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 1 Nov 2003 06:30:17 +0000 Subject: [PATCH] clean up Characters error message --- stepmania/src/GameState.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 0331305cb2..4e78eb92ff 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -226,9 +226,11 @@ void GameState::ReloadCharacters() } if( !FoundDefault ) - RageException::Throw( "Couldn't find \"Characters" SLASH "default\"" ); - if( !m_pCharacters.size() ) - RageException::Throw( "Couldn't find any character definitions" ); + RageException::Throw( "'Characters" SLASH "default' is missing." ); + + // If FoundDefault, then we're not empty. -Chris +// if( m_pCharacters.empty() ) +// RageException::Throw( "Couldn't find any character definitions" ); } const float GameState::MUSIC_SECONDS_INVALID = -5000.0f;