add HideSystemMessage

This commit is contained in:
Chris Danford
2005-06-15 10:01:08 +00:00
parent 39b631da51
commit c2a8150f16
3 changed files with 12 additions and 0 deletions
+6
View File
@@ -251,6 +251,12 @@ void ScreenSystemLayer::HandleMessage( const CString &sMessage )
m_textMessage.FinishTweening();
m_textMessage.PlayCommand( "Off" );
}
else if( sMessage == "HideSystemMessage" )
{
m_sprMessageFrame->SetHidden( true );
m_textMessage.SetHidden( true );
}
Screen::HandleMessage( sMessage );
}