From 61a599eeaeab8bbf53767cd21d6d8cb59ccfb172 Mon Sep 17 00:00:00 2001 From: YeongJun Cho Date: Thu, 22 Feb 2018 23:23:52 +0900 Subject: [PATCH] MainLoader : fix a bug that a process is not killed after application is closed * happens only when the configuration tool is not used --- src/bms/player/beatoraja/MainLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bms/player/beatoraja/MainLoader.java b/src/bms/player/beatoraja/MainLoader.java index b4ec4648f..9892b1bbd 100644 --- a/src/bms/player/beatoraja/MainLoader.java +++ b/src/bms/player/beatoraja/MainLoader.java @@ -70,7 +70,7 @@ public static void main(String[] args) { if (config || !Files.exists(MainController.configpath)) { launch(args); } else { - play(f, auto, false, null, null, f != null); + play(f, auto, true, null, null, f != null); } }