mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- RFS compatibility with GDX: The outermost path component can be left out.
This commit is contained in:
parent
27ca71a6ec
commit
eb912604d2
1 changed files with 2 additions and 2 deletions
|
@ -659,8 +659,8 @@ void ParseScript(int lumpnum)
|
||||||
auto inp1 = strpbrk(inp, "/\\");
|
auto inp1 = strpbrk(inp, "/\\");
|
||||||
if (!inp1 || !fileSystem.CreatePathlessCopy(inp1 + 1, ID, nFlags))
|
if (!inp1 || !fileSystem.CreatePathlessCopy(inp1 + 1, ID, nFlags))
|
||||||
{
|
{
|
||||||
// I'll activate this when I find evidence that it is needed. Otherwise the risk of picking up unwanted data is too high.
|
// GDX spports this so we should, too.
|
||||||
//fileSystem.CreatePathlessCopy(inp, ID, nFlags);
|
fileSystem.CreatePathlessCopy(inp, ID, nFlags);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue