From 2665d4c204d78eab932cd9e23fa9d50ec90da0d5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 22 Mar 2005 10:29:01 +0000 Subject: [PATCH] fix some ScreenOptionsMenu items marked SelectNone, causing the GameCommand to not Apply --- stepmania/src/OptionRowHandler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/OptionRowHandler.cpp b/stepmania/src/OptionRowHandler.cpp index bcae1ab252..3a9142a994 100644 --- a/stepmania/src/OptionRowHandler.cpp +++ b/stepmania/src/OptionRowHandler.cpp @@ -100,6 +100,7 @@ public: if( sName == "together" ) defOut.bOneChoiceForAllPlayers = true; else if( sName == "selectmultiple" ) defOut.selectType = SELECT_MULTIPLE; + else if( sName == "selectone" ) defOut.selectType = SELECT_ONE; else if( sName == "selectnone" ) defOut.selectType = SELECT_NONE; else if( sName == "showoneinrow" ) defOut.layoutType = LAYOUT_SHOW_ONE_IN_ROW; else if( sName == "reloadrowmessages" )