From 56ccef8ee0e355ce5c2117119e8fc9940d30fb42 Mon Sep 17 00:00:00 2001 From: zilmar Date: Mon, 8 Jun 2020 16:52:41 +0930 Subject: [PATCH] Join Settings: escape ":" with splitting file --- Source/JoinSettings/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/JoinSettings/main.cpp b/Source/JoinSettings/main.cpp index 5c5271ad7..f9fcbfcfb 100644 --- a/Source/JoinSettings/main.cpp +++ b/Source/JoinSettings/main.cpp @@ -85,6 +85,7 @@ void SplitFile(const char * FileName, const char * Target) } Name.Replace("\\", "-"); Name.Replace("/", "-"); + Name.Replace(":", " -"); if (Name.length() == 0) { continue;