diff --git a/Source/Core/IO/Configuration.cs b/Source/Core/IO/Configuration.cs index 9fb7222d..d2ecf25d 100755 --- a/Source/Core/IO/Configuration.cs +++ b/Source/Core/IO/Configuration.cs @@ -844,9 +844,10 @@ namespace CodeImp.DoomBuilder.IO // Determine the full path of the file to include string includefile = Path.GetDirectoryName(file) + Path.DirectorySeparatorChar + args[0]; + includefile = includefile.Replace('\\', '/'); - //mxd. Caching - if(cfgcache.ContainsKey(includefile)) + //mxd. Caching + if (cfgcache.ContainsKey(includefile)) { IDictionary cinc = cfgcache[includefile];