cleanup gk CLI and fix issue that caused revert (#2310)

My mistake -- testing focused too much on preserving the existing
behaviour I clearly forgot to make sure the new stuff worked properly.

Just had to early out and not modify the args if they were in the new
format.
This commit is contained in:
Tyler Wilding
2023-03-09 23:13:01 -05:00
committed by GitHub
parent 3ce7f59989
commit 630388229e
17 changed files with 206 additions and 116 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
@echo off
cd ..\..
out\build\Release\bin\gk -boot -fakeiso -debug -v
out\build\Release\bin\gk -v -- -boot -fakeiso -debug
pause
+1 -1
View File
@@ -1,4 +1,4 @@
@echo off
cd ..\..
out\build\Release\bin\gk -boot -fakeiso -v
out\build\Release\bin\gk -v -- -boot -fakeiso
pause
+1 -1
View File
@@ -1,4 +1,4 @@
@echo off
cd ..\..
out\build\Release\bin\gk -fakeiso -debug -v -nodisplay
out\build\Release\bin\gk -v --no-display -- -fakeiso -debug
pause
+1 -1
View File
@@ -1,4 +1,4 @@
@echo off
cd ..\..
out\build\Release\bin\gk -boot -fakeiso -debug -v -jak2
out\build\Release\bin\gk -v --game jak2 -- -boot -fakeiso -debug
pause