From 28e725b0b894e6f4225d715f3a33a4c2739590c1 Mon Sep 17 00:00:00 2001 From: freem Date: Thu, 18 Sep 2014 01:49:08 -0500 Subject: [PATCH] reverting part of the war on -Werror because there's no decent reason this should be crashing 3/4ths of the time I load StepMania with this screen in TestInitialScreen/reload it from the debug menu. --- src/ScreenNameEntryTraditional.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScreenNameEntryTraditional.cpp b/src/ScreenNameEntryTraditional.cpp index 8cd96a60d8..c2db9c7cbf 100644 --- a/src/ScreenNameEntryTraditional.cpp +++ b/src/ScreenNameEntryTraditional.cpp @@ -33,7 +33,7 @@ void ScreenNameEntryTraditional::Init() ss.m_vpPossibleSongs = ss.m_vpPlayedSongs; ss.m_pStyle = GAMESTATE->GetCurrentStyle(); ss.m_playMode = GAMESTATE->m_PlayMode; - ASSERT( ss.m_vpPlayedSongs[0]->GetAllSteps().size() != 0 ); + ASSERT( ss.m_vpPlayedSongs[0]->GetAllSteps().size() ); StepsType st = GAMESTATE->GetCurrentStyle()->m_StepsType; FOREACH_PlayerNumber( p )