mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- fixed rffdefineid handler passing a bad file name to the backend.
This commit is contained in:
parent
51c4c47183
commit
778a75c097
2 changed files with 2 additions and 2 deletions
|
@ -3156,7 +3156,7 @@ static int32_t defsparser(scriptfile *script)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
FStringf name("%s.%s", resName.GetChars(), resType.GetChars());
|
FStringf name("%s.%s", resName.GetChars(), resType.GetChars());
|
||||||
fileSystem.CreatePathlessCopy(resName, resID, 0);
|
fileSystem.CreatePathlessCopy(name, resID, 0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -1328,7 +1328,7 @@ void LoadDefinitions()
|
||||||
{
|
{
|
||||||
loaddefinitionsfile("engine/widescreen.def");
|
loaddefinitionsfile("engine/widescreen.def");
|
||||||
}
|
}
|
||||||
|
fileSystem.InitHashChains();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue