Skip to content

Commit

Permalink
MainLoader : fix a bug that a process is not killed after application…
Browse files Browse the repository at this point in the history
… is closed

 * happens only when the configuration tool is not used
  • Loading branch information
SkywaveTM committed Feb 22, 2018
1 parent 4128fb0 commit 61a599e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bms/player/beatoraja/MainLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 61a599e

Please sign in to comment.