fix cursortrail when changing sb index

This commit is contained in:
yugecin 2016-12-11 19:25:35 +01:00
parent 1660c4f3d7
commit a22c232beb

View File

@ -1351,7 +1351,9 @@ public class Game extends BasicGameState {
@Override @Override
public void enter(GameContainer container, StateBasedGame game) public void enter(GameContainer container, StateBasedGame game)
throws SlickException { throws SlickException {
UI.enter(); if (!skippedToCheckpoint) {
UI.enter();
}
if (beatmap == null || beatmap.objects == null) if (beatmap == null || beatmap.objects == null)
throw new RuntimeException("Running game with no beatmap loaded."); throw new RuntimeException("Running game with no beatmap loaded.");