Quick fixes.

- Fixed a crash when closing the application in the ranking screen when viewing a score.
- Fixed a minor bug where OsuGroupList fields were not being erased upon restart.
- Dim the track volume by 50% when viewing a score.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2015-01-28 20:57:43 -05:00
parent ce15f25ca1
commit 2007058eb1
7 changed files with 48 additions and 15 deletions

View File

@@ -777,6 +777,10 @@ public class SongMenu extends BasicGameState {
else if (MusicController.isPaused())
MusicController.resume();
// undim track
if (MusicController.isTrackDimmed())
MusicController.toggleTrackDimmed(1f);
// reset song stack
randomStack = new Stack<SongNode>();