mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
Added message for absent explicitly referenced dialog file
This commit is contained in:
parent
3239a9eaa6
commit
cb3650ed9e
1 changed files with 5 additions and 0 deletions
|
@ -232,6 +232,11 @@ bool LoadScriptFile (const char *name, bool include, int type)
|
|||
|
||||
if (!found)
|
||||
{
|
||||
if (type == 0)
|
||||
{
|
||||
Printf(TEXTCOLOR_RED "Could not find dialog file %s", name);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
FileReader lump = Wads.ReopenLumpReader (lumpnum);
|
||||
|
|
Loading…
Reference in a new issue