Reformatted 'windowed' cli arg

This commit is contained in:
Collin Smith
2020-11-22 14:07:14 -08:00
parent 8cfc94bde7
commit 1fefdef5ea

View File

@ -49,8 +49,11 @@ public class DesktopLauncher {
.hasArg() .hasArg()
.argName("size") .argName("size")
.build()) .build())
.addOption("w", "windowed", false, .addOption(Option
"forces windowed mode") .builder("w")
.longOpt("windowed")
.desc("forces windowed mode")
.build())
.addOption("fps", "drawFps", false, .addOption("fps", "drawFps", false,
"force draws an FPS counter") "force draws an FPS counter")
.addOption("logLevel", true, .addOption("logLevel", true,