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..47f0ab275 100644 --- a/Templates/Empty/game/main.cs +++ b/Templates/Empty/game/main.cs @@ -57,7 +57,7 @@ $displayHelp = false; // Use these to record and play back crashes //saveJournal("editorOnFileQuitCrash.jrn"); -//playJournal("editorOnFileQuitCrash.jrn", false); +//playJournal("editorOnFileQuitCrash.jrn"); //------------------------------------------------------------------------------ // Check if a script file exists, compiled or not. @@ -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..a541cf3b7 100644 --- a/Templates/Empty/game/main.cs.in +++ b/Templates/Empty/game/main.cs.in @@ -57,7 +57,7 @@ $displayHelp = false; // Use these to record and play back crashes //saveJournal("editorOnFileQuitCrash.jrn"); -//playJournal("editorOnFileQuitCrash.jrn", false); +//playJournal("editorOnFileQuitCrash.jrn"); //------------------------------------------------------------------------------ // Check if a script file exists, compiled or not. @@ -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..3febb4f1e 100644 --- a/Templates/Full/game/main.cs +++ b/Templates/Full/game/main.cs @@ -57,7 +57,7 @@ $displayHelp = false; // Use these to record and play back crashes //saveJournal("editorOnFileQuitCrash.jrn"); -//playJournal("editorOnFileQuitCrash.jrn", false); +//playJournal("editorOnFileQuitCrash.jrn"); //------------------------------------------------------------------------------ // Check if a script file exists, compiled or not. @@ -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..a541cf3b7 100644 --- a/Templates/Full/game/main.cs.in +++ b/Templates/Full/game/main.cs.in @@ -57,7 +57,7 @@ $displayHelp = false; // Use these to record and play back crashes //saveJournal("editorOnFileQuitCrash.jrn"); -//playJournal("editorOnFileQuitCrash.jrn", false); +//playJournal("editorOnFileQuitCrash.jrn"); //------------------------------------------------------------------------------ // Check if a script file exists, compiled or not. @@ -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" ); }