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()
.argName("size")
.build())
.addOption("w", "windowed", false,
"forces windowed mode")
.addOption(Option
.builder("w")
.longOpt("windowed")
.desc("forces windowed mode")
.build())
.addOption("fps", "drawFps", false,
"force draws an FPS counter")
.addOption("logLevel", true,