Skip to content

Commit cb5b421

Browse files
committed
Reduce tab-to-space size to 2
1 parent 97ea302 commit cb5b421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SabreTools.RedumpLib/Formatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ private static void AddIfExists(StringBuilder output, string key, string? value,
559559
value = value.Replace("<TAB>", "\t");
560560
value = value.Replace("<Tab>", "\t");
561561
#endif
562-
value = value.Replace(" ", "\t");
562+
value = value.Replace(" ", "\t");
563563

564564
// Sanitize whitespace around tabs
565565
value = Regex.Replace(value, @"\s*\t\s*", "\t", RegexOptions.Compiled);

0 commit comments

Comments
 (0)