mirror of
https://github.com/open-goal/jak-project
synced 2026-08-22 07:04:29 -04:00
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:
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user