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