Remove debugging line in GameScreen.

This commit is contained in:
Jan Philipp Timme 2014-11-29 17:13:40 +01:00
parent 1b5eb872dd
commit ea9dfbf774
1 changed files with 1 additions and 2 deletions

View File

@ -102,11 +102,10 @@ public class GameScreen extends Screen {
}
/**
* Cleanup method for the background music.
* Cleanup method to stop the background music.
*/
@Override
public void cleanup() {
System.out.println("Interrupting Music");
this.backgroundMusic.interrupt();
super.cleanup();
}