Skip to content

Commit

Permalink
Fixed loading of external DeHackEd patches
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Dec 9, 2017
1 parent a3a350e commit 0bd9437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/d_dehacked.cpp
Expand Up @@ -2490,7 +2490,7 @@ bool D_LoadDehFile(const char *patchfile)
{
FileReader fr;

if (!fr.Open(patchfile))
if (fr.Open(patchfile))
{
PatchSize = fr.GetLength();

Expand Down

0 comments on commit 0bd9437

Please sign in to comment.