fix "PrevRow" sound

This commit is contained in:
Chris Danford
2004-03-08 06:12:03 +00:00
parent b8fb1413fe
commit 81606a2fd7
+6 -1
View File
@@ -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