We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bace4b commit 1ef7755Copy full SHA for 1ef7755
1 file changed
AGSUnpacker.Shared/Utils/AGSStringUtils.cs
@@ -142,7 +142,7 @@ public static byte[] ConvertToNullTerminatedSequence(string[] strings)
142
'?' => new char[] { '?' },
143
// NOTE(adm244): ignore unescaping "\["; '[' is an old-style newline
144
'[' => new char[] { '\\', '[' },
145
- _ => new char[] { c }
+ _ => new char[] { '\\', c }
146
};
147
148
public static string Escape(string s)
0 commit comments