mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Fixed error reporting on loading malformed DeHackEd patches
This commit is contained in:
parent
92f10febe8
commit
de0a815215
1 changed files with 1 additions and 1 deletions
|
@ -2559,9 +2559,9 @@ static bool DoDehPatch()
|
|||
}
|
||||
if (!cont || dversion == -1 || pversion == -1)
|
||||
{
|
||||
Printf (PRINT_BOLD, "\"%s\" is not a DeHackEd patch file\n", PatchName);
|
||||
delete[] PatchName;
|
||||
delete[] PatchFile;
|
||||
Printf (PRINT_BOLD, "\"%s\" is not a DeHackEd patch file\n", PatchFile);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue