From 29e013270c81a9f6e3d61df44e20e8c76faefb7a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 1 Aug 2005 05:13:52 +0000 Subject: [PATCH] export row before calling AfterChangeValueInRow so that derived classes can operate using the newly exported data --- stepmania/src/ScreenOptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index a4455c82bb..d7ce9aea24 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -1065,8 +1065,6 @@ void ScreenOptions::ChangeValueInRowRelative( int iRow, PlayerNumber pn, int iDe UpdateText( iRow ); - this->AfterChangeValueInRow( iRow, pn ); - if( m_OptionsNavigation != NAV_THREE_KEY_MENU ) m_SoundChangeCol.Play(); @@ -1077,6 +1075,8 @@ void ScreenOptions::ChangeValueInRowRelative( int iRow, PlayerNumber pn, int iDe vpns.push_back( p ); ExportOptions( iRow, vpns ); } + + this->AfterChangeValueInRow( iRow, pn ); } void ScreenOptions::AfterChangeValueInRow( int iRow, PlayerNumber pn )