Changed sound player, code will work on java 7

This commit is contained in:
jancoow
2015-06-05 20:45:39 +02:00
parent f9e6a90160
commit ab5fd4007d
6 changed files with 47 additions and 86 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ public class GameControl implements JoystickListener, ButtonListener,ActionListe
this.model = model;
this.view = view;
this.gsm = gsm;
update = new Timer(0, this);
update = new Timer(1000/60, this);
update.start();
}