From 4025a358c2f5212ff4290fb1ecd545786b1de485 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 28 Sep 2003 05:02:00 +0000 Subject: [PATCH] bugfix --- stepmania/src/ScreenOptionsMaster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptionsMaster.cpp b/stepmania/src/ScreenOptionsMaster.cpp index c6290198f6..48b9ba3937 100644 --- a/stepmania/src/ScreenOptionsMaster.cpp +++ b/stepmania/src/ScreenOptionsMaster.cpp @@ -445,7 +445,7 @@ void ScreenOptionsMaster::ExportOptions() const OptionRowHandler &hand = OptionRowHandlers[row]; if( hand.type == ROW_LIST ) { - const int sel = m_iSelectedOption[0][i]; + const int sel = m_iSelectedOption[0][row]; const ModeChoice &mc = hand.ListEntries[sel]; if( mc.m_sScreen != "" ) m_NextScreen = mc.m_sScreen;