From 54ccc76b3a72d4e812233f1399a7a0328310366c Mon Sep 17 00:00:00 2001 From: Josh Allen Date: Tue, 1 Aug 2006 22:06:03 +0000 Subject: [PATCH] Stop is supposed to come first --- stepmania/src/ScreenNetworkOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenNetworkOptions.cpp b/stepmania/src/ScreenNetworkOptions.cpp index 43ec183879..8992f37a48 100644 --- a/stepmania/src/ScreenNetworkOptions.cpp +++ b/stepmania/src/ScreenNetworkOptions.cpp @@ -76,8 +76,8 @@ void ScreenNetworkOptions::Init() pHand->m_Def.m_bAllowThemeItems = false; pHand->m_Def.m_bOneChoiceForAllPlayers = true; pHand->m_Def.m_sName = "Server"; - pHand->m_Def.m_vsChoices.push_back(SERVER_START); pHand->m_Def.m_vsChoices.push_back(SERVER_STOP); + pHand->m_Def.m_vsChoices.push_back(SERVER_START); } { OptionRowHandler *pHand = OptionRowHandlerUtil::MakeNull();