mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
Fixed loading of external DeHackEd patches
https://forum.zdoom.org/viewtopic.php?t=58685
This commit is contained in:
parent
a3a350e6e8
commit
0bd9437a96
1 changed files with 1 additions and 1 deletions
|
@ -2490,7 +2490,7 @@ bool D_LoadDehFile(const char *patchfile)
|
|||
{
|
||||
FileReader fr;
|
||||
|
||||
if (!fr.Open(patchfile))
|
||||
if (fr.Open(patchfile))
|
||||
{
|
||||
PatchSize = fr.GetLength();
|
||||
|
||||
|
|
Loading…
Reference in a new issue