From 9c8bd0ab07c539d7ddf447dd091b1c906351eafd Mon Sep 17 00:00:00 2001 From: AdmiralCurtiss Date: Tue, 15 Sep 2015 22:47:11 +0200 Subject: [PATCH] Change the default output filename to have (NoSSL) instead of (AltWfc). Fixes #7. --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 552c47f..a2ae05e 100644 --- a/Program.cs +++ b/Program.cs @@ -9,7 +9,7 @@ namespace WfcPatcher { CommandLineArguments.ParseCommandLineArguments( args ); foreach ( string filename in CommandLineArguments.Filenames ) { - string newFilename = System.IO.Path.Combine( System.IO.Path.GetDirectoryName( filename ), System.IO.Path.GetFileNameWithoutExtension( filename ) ) + " (AltWfc)" + System.IO.Path.GetExtension( filename ); + string newFilename = System.IO.Path.Combine( System.IO.Path.GetDirectoryName( filename ), System.IO.Path.GetFileNameWithoutExtension( filename ) ) + " (NoSSL)" + System.IO.Path.GetExtension( filename ); #if !DEBUG try { #endif