HandleMessage( Message )

This commit is contained in:
Glenn Maynard
2006-11-13 23:11:25 +00:00
parent c219f56a3b
commit a5f5fa0b78
28 changed files with 60 additions and 60 deletions
+3 -3
View File
@@ -468,14 +468,14 @@ void ScreenMapControllers::Refresh()
m_LineScroller.SetDestinationItem( (float) m_iCurButton );
}
void ScreenMapControllers::HandleMessage( const RString& sMessage )
void ScreenMapControllers::HandleMessage( const Message &msg )
{
if( sMessage == MessageToString(Message_AutoJoyMappingApplied) )
if( msg == Message_AutoJoyMappingApplied )
{
Refresh();
}
ScreenWithMenuElements::HandleMessage( sMessage );
ScreenWithMenuElements::HandleMessage( msg );
}