We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0ec10c commit a8c6ec6Copy full SHA for a8c6ec6
src/com/redomar/game/Game.java
@@ -68,7 +68,7 @@ public class Game extends Canvas implements Runnable {
68
private Music music = new Music();
69
private Time time = new Time();
70
private Font font = new Font();
71
- private Thread musicThread = new Thread(music);
+ private Thread musicThread = new Thread(music, "MUSIC");
72
private String nowPlaying;
73
private boolean notActive = true;
74
private boolean noAudioDevice = false;
@@ -144,7 +144,7 @@ public static void npcKill(){
144
145
public synchronized void start() {
146
running = true;
147
- new Thread(this).start();
+ new Thread(this, "GAME").start();
148
149
if (Jdata_Host == 0) {
150
socketServer = new GameServer(this);
0 commit comments