Revert "game: cleanup gk's CLI documentation" (#2306)

Reverts open-goal/jak-project#2189

can't figure out how to use the new options yet
This commit is contained in:
water111
2023-03-09 20:24:43 -05:00
committed by GitHub
parent 021bae08ec
commit 15bf281377
18 changed files with 117 additions and 203 deletions
+6 -6
View File
@@ -152,17 +152,17 @@ void InitParms(int argc, const char* const* argv) {
// new for jak 2
if (arg == "-user") {
i++;
std::string userName = argv[i];
Msg(6, "dkernel: user %s\n", userName.c_str());
kstrcpy(DebugBootUser, userName.c_str());
std::string levelName = argv[i];
Msg(6, "dkernel: user %s\n", levelName.c_str());
kstrcpy(DebugBootUser, levelName.c_str());
}
// new for jak 2
if (arg == "-art") {
i++;
std::string artGroupName = argv[i];
Msg(6, "dkernel: art-group %s\n", artGroupName.c_str());
kstrcpy(DebugBootArtGroup, artGroupName.c_str());
std::string levelName = argv[i];
Msg(6, "dkernel: art-group %s\n", levelName.c_str());
kstrcpy(DebugBootArtGroup, levelName.c_str());
kstrcpy(DebugBootMessage, "art-group");
}