From 81606a2fd721f21d9d1da056ad782b50fa20acec Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 8 Mar 2004 06:12:03 +0000 Subject: [PATCH] fix "PrevRow" sound --- stepmania/src/ScreenOptions.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index bf18685fa4..26172d3a9b 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -1376,7 +1376,12 @@ void ScreenOptions::MoveRow( PlayerNumber pn, int dir, bool Repeat ) changed = true; } if( changed ) - m_SoundNextRow.Play(); + { + if( dir < 0 ) + m_SoundPrevRow.Play(); + else + m_SoundNextRow.Play(); + } } int ScreenOptions::GetCurrentRow( PlayerNumber pn ) const