From 196f0ea318875cfe6b874ac76d90fb7ba2c6c7c4 Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 11 Oct 2023 18:38:51 +0400 Subject: [PATCH] (ArcEXE): fixed new line. --- Experimental/Microsoft/ArcEXE.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Experimental/Microsoft/ArcEXE.cs b/Experimental/Microsoft/ArcEXE.cs index 4c5b4230..f32a14a7 100644 --- a/Experimental/Microsoft/ArcEXE.cs +++ b/Experimental/Microsoft/ArcEXE.cs @@ -195,7 +195,7 @@ namespace GameRes.Formats.Microsoft using (var text = new StreamWriter (output, new UTF8Encoding (false), 512, true)) { string block_name = input.ReadCString (Encoding.Unicode); - text.WriteLine ("BLOCK \"{0}\"\n{{", block_name); + text.WriteLine ("BLOCK \"{0}\"\r\n{{", block_name); long next_pos = (input.Position + 3) & -4L; while (next_pos < end_pos) {