Due for a merge.

This commit is contained in:
Jason Felds
2012-04-08 13:47:56 -04:00
4 changed files with 15 additions and 1 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
+7
View File
@@ -760,6 +760,12 @@ public:
}
return 0;
}
static int FailPlayer( T* p, lua_State *L )
{
p->m_bFailed = true;
return 0;
}
LunaPlayerStageStats()
{
@@ -801,6 +807,7 @@ public:
ADD_METHOD( SetScore );
ADD_METHOD( GetCurMaxScore );
ADD_METHOD( SetCurMaxScore );
ADD_METHOD( FailPlayer );
}
};
+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);
}
+1 -1
View File
@@ -130,7 +130,7 @@ static RString DeviceName()
{
if( !PREFSMAN->m_iSoundDevice.Get().empty() )
return PREFSMAN->m_iSoundDevice;
return "hw:0";
return "default";
}
void Alsa9Buf::GetSoundCardDebugInfo()