simplify: add SetInputMode, like SetNavigation

This commit is contained in:
Glenn Maynard
2005-07-15 03:31:26 +00:00
parent 1f3ac4613c
commit d7d070077e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ void ScreenMiniMenu::Init( const MenuDef* pDef, ScreenMessage SM_SendOnOK, Scree
vector<OptionRowHandler*> vHands;
vHands.resize( vDefs.size(), NULL );
ScreenOptions::InitMenu( INPUTMODE_SHARE_CURSOR, vDefs, vHands );
ScreenOptions::InitMenu( vDefs, vHands );
}
void ScreenMiniMenu::OnChange( PlayerNumber pn )
+1 -1
View File
@@ -48,7 +48,7 @@ void ScreenSMOnlineLogin::Init()
vector<OptionRowDefinition> vDefs( &g_ProfileLine[0], &g_ProfileLine[ARRAYSIZE(g_ProfileLine)] );
vector<OptionRowHandler*> vHands( vDefs.size(), NULL );
InitMenu( INPUTMODE_SHARE_CURSOR, vDefs, vHands );
InitMenu( vDefs, vHands );
SOUND->PlayMusic( THEME->GetPathS("ScreenMachineOptions", "music"));
OptionRow &row = *m_pRows.back();
row.SetExitText("Login");