This commit is contained in:
Glenn Maynard
2006-07-01 03:15:28 +00:00
parent 45582ee9fb
commit 8b2e7065fa
+4 -2
View File
@@ -489,8 +489,10 @@ void ScreenManager::Input( const InputEventPlus &input )
if( m_sDelayedScreen != "" ) if( m_sDelayedScreen != "" )
return; return;
if( !g_ScreenStack.empty() ) if( g_ScreenStack.empty() )
g_ScreenStack.back().m_pScreen->Input( input ); return;
g_ScreenStack.back().m_pScreen->Input( input );
} }
/* Just create a new screen; don't do any associated cleanup. */ /* Just create a new screen; don't do any associated cleanup. */