mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 22:01:45 +00:00
Implemented alternate fix for Linux paths (2)
This commit is contained in:
parent
f0aee1e174
commit
714bb84204
1 changed files with 3 additions and 2 deletions
|
@ -844,9 +844,10 @@ namespace CodeImp.DoomBuilder.IO
|
||||||
|
|
||||||
// Determine the full path of the file to include
|
// Determine the full path of the file to include
|
||||||
string includefile = Path.GetDirectoryName(file) + Path.DirectorySeparatorChar + args[0];
|
string includefile = Path.GetDirectoryName(file) + Path.DirectorySeparatorChar + args[0];
|
||||||
|
includefile = includefile.Replace('\\', '/');
|
||||||
|
|
||||||
//mxd. Caching
|
//mxd. Caching
|
||||||
if(cfgcache.ContainsKey(includefile))
|
if (cfgcache.ContainsKey(includefile))
|
||||||
{
|
{
|
||||||
IDictionary cinc = cfgcache[includefile];
|
IDictionary cinc = cfgcache[includefile];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue