- reduced missing texture messages in the menu to warnings.

This commit is contained in:
Christoph Oelckers 2017-03-08 19:04:35 +01:00
parent f341e7fb6a
commit b513b32bcf
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ static void ParseListMenuBody(FScanner &sc, DListMenuDescriptor *desc)
auto f = TexMan.CheckForTexture(sc.String, FTexture::TEX_MiscPatch);
if (!f.Exists())
{
sc.ScriptError("Unknown texture %s", sc.String);
sc.ScriptMessage("Unknown texture %s", sc.String);
}
params.Push(f.GetIndex());
}