diff --git a/Templates/Empty/game/core/parseArgs.cs b/Templates/Empty/game/core/parseArgs.cs index bd3f8d382..373964c3d 100644 --- a/Templates/Empty/game/core/parseArgs.cs +++ b/Templates/Empty/game/core/parseArgs.cs @@ -160,7 +160,7 @@ function defaultParseArgs() $argUsed[$i]++; if ($hasNextArg) { - playJournal($nextArg,false); + playJournal($nextArg); $argUsed[$i+1]++; $i++; } @@ -240,18 +240,6 @@ function defaultParseArgs() else error("Error: Missing Command Line argument. Usage: -vidCapHeight "); - //-------------------- - case "-jDebug": - $argUsed[$i]++; - if ($hasNextArg) - { - playJournal($nextArg,true); - $argUsed[$i+1]++; - $i++; - } - else - error("Error: Missing Command Line argument. Usage: -jDebug "); - //-------------------- case "-level": $argUsed[$i]++; diff --git a/Templates/Empty/game/main.cs b/Templates/Empty/game/main.cs index b6218c8cd..90d6203a8 100644 --- a/Templates/Empty/game/main.cs +++ b/Templates/Empty/game/main.cs @@ -186,10 +186,8 @@ function displayHelp() { " Works like the -game argument\n"@ " -dir Add to list of directories\n"@ " -console Open a separate console\n"@ - " -show Deprecated\n"@ " -jSave Record a journal\n"@ " -jPlay Play back a journal\n"@ - " -jDebug Play back a journal and issue an int3 at the end\n"@ " -help Display this help message\n" ); } diff --git a/Templates/Empty/game/main.cs.in b/Templates/Empty/game/main.cs.in index 06f3e8854..bb8250156 100644 --- a/Templates/Empty/game/main.cs.in +++ b/Templates/Empty/game/main.cs.in @@ -186,10 +186,8 @@ function displayHelp() { " Works like the -game argument\n"@ " -dir Add to list of directories\n"@ " -console Open a separate console\n"@ - " -show Deprecated\n"@ " -jSave Record a journal\n"@ " -jPlay Play back a journal\n"@ - " -jDebug Play back a journal and issue an int3 at the end\n"@ " -help Display this help message\n" ); } diff --git a/Templates/Full/game/core/parseArgs.cs b/Templates/Full/game/core/parseArgs.cs index bd3f8d382..373964c3d 100644 --- a/Templates/Full/game/core/parseArgs.cs +++ b/Templates/Full/game/core/parseArgs.cs @@ -160,7 +160,7 @@ function defaultParseArgs() $argUsed[$i]++; if ($hasNextArg) { - playJournal($nextArg,false); + playJournal($nextArg); $argUsed[$i+1]++; $i++; } @@ -240,18 +240,6 @@ function defaultParseArgs() else error("Error: Missing Command Line argument. Usage: -vidCapHeight "); - //-------------------- - case "-jDebug": - $argUsed[$i]++; - if ($hasNextArg) - { - playJournal($nextArg,true); - $argUsed[$i+1]++; - $i++; - } - else - error("Error: Missing Command Line argument. Usage: -jDebug "); - //-------------------- case "-level": $argUsed[$i]++; diff --git a/Templates/Full/game/main.cs b/Templates/Full/game/main.cs index 7c34f350d..3eb802d9f 100644 --- a/Templates/Full/game/main.cs +++ b/Templates/Full/game/main.cs @@ -186,10 +186,8 @@ function displayHelp() { " Works like the -game argument\n"@ " -dir Add to list of directories\n"@ " -console Open a separate console\n"@ - " -show Deprecated\n"@ " -jSave Record a journal\n"@ " -jPlay Play back a journal\n"@ - " -jDebug Play back a journal and issue an int3 at the end\n"@ " -help Display this help message\n" ); } diff --git a/Templates/Full/game/main.cs.in b/Templates/Full/game/main.cs.in index 06f3e8854..bb8250156 100644 --- a/Templates/Full/game/main.cs.in +++ b/Templates/Full/game/main.cs.in @@ -186,10 +186,8 @@ function displayHelp() { " Works like the -game argument\n"@ " -dir Add to list of directories\n"@ " -console Open a separate console\n"@ - " -show Deprecated\n"@ " -jSave Record a journal\n"@ " -jPlay Play back a journal\n"@ - " -jDebug Play back a journal and issue an int3 at the end\n"@ " -help Display this help message\n" ); }