.
This commit is contained in:
parent
2b9834f625
commit
c247a30e56
1 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ import pygame
|
||||||
shutdown_event = threading.Event()
|
shutdown_event = threading.Event()
|
||||||
|
|
||||||
# ========================= CONFIG =========================
|
# ========================= CONFIG =========================
|
||||||
DEBUG = False # Set True to enable debug overrides
|
DEBUG = True # Set True to enable debug overrides
|
||||||
|
|
||||||
# Default paths (used if not in debug mode)
|
# Default paths (used if not in debug mode)
|
||||||
DEFAULT_WIN_GAME_EXE = r"./qgame.dll"
|
DEFAULT_WIN_GAME_EXE = r"./qgame.dll"
|
||||||
|
|
@ -621,11 +621,11 @@ def game_launch(gameargs):
|
||||||
pygame.mixer.init()
|
pygame.mixer.init()
|
||||||
|
|
||||||
# Start playlist watcher thread
|
# Start playlist watcher thread
|
||||||
playlist_thread = threading.Thread(target=playlist_watcher,args=(playlist_path,), daemon=True)
|
playlist_thread = threading.Thread(target=playlist_watcher,args=(playlist_path,), daemon=False)
|
||||||
playlist_thread.start()
|
playlist_thread.start()
|
||||||
|
|
||||||
# Start track watcher thread
|
# Start track watcher thread
|
||||||
watcher_thread = threading.Thread(target=track_watcher, daemon=True)
|
watcher_thread = threading.Thread(target=track_watcher, daemon=False)
|
||||||
watcher_thread.start()
|
watcher_thread.start()
|
||||||
|
|
||||||
chosen_mod = None
|
chosen_mod = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue