[ScreenNetworkOptions] Fixed a bug where localized text would not show up properly. Fixes issue 759.

This commit is contained in:
AJ Kelly
2012-04-08 11:12:30 -05:00
parent 64e74f4824
commit 33348f0743
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -9,6 +9,11 @@ ________________________________________________________________________________
StepMania 5.0 alpha 2 | 201204??
--------------------------------------------------------------------------------
2012/04/08
----------
* [ScreenNetworkOptions] Fixed a bug where localized text would not show up
properly. Fixes issue 759. [AJ]
2012/04/06
----------
* Modify Jousway's planned noteskin to allow it to work with Technomotion
+2
View File
@@ -52,6 +52,7 @@ void ScreenNetworkOptions::Init()
vHands.push_back( pHand );
pHand->m_Def.m_sName = "Connection";
pHand->m_Def.m_bOneChoiceForAllPlayers = true;
pHand->m_Def.m_bAllowThemeItems = false;
if ( NSMAN->useSMserver )
pHand->m_Def.m_vsChoices.push_back(CLIENT_DISCONNECT);
else
@@ -63,6 +64,7 @@ void ScreenNetworkOptions::Init()
pHand->m_Def.m_sName = "Scoreboard";
pHand->m_Def.m_vsChoices.clear();
pHand->m_Def.m_bOneChoiceForAllPlayers = true;
pHand->m_Def.m_bAllowThemeItems = false;
pHand->m_Def.m_vsChoices.push_back(SCORE_OFF);
pHand->m_Def.m_vsChoices.push_back(SCORE_ON);
}