mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 20:02:48 +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
|
||||
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];
|
||||
|
||||
|
|
Loading…
Reference in a new issue