mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- reduced missing texture messages in the menu to warnings.
This commit is contained in:
parent
f341e7fb6a
commit
b513b32bcf
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ static void ParseListMenuBody(FScanner &sc, DListMenuDescriptor *desc)
|
||||||
auto f = TexMan.CheckForTexture(sc.String, FTexture::TEX_MiscPatch);
|
auto f = TexMan.CheckForTexture(sc.String, FTexture::TEX_MiscPatch);
|
||||||
if (!f.Exists())
|
if (!f.Exists())
|
||||||
{
|
{
|
||||||
sc.ScriptError("Unknown texture %s", sc.String);
|
sc.ScriptMessage("Unknown texture %s", sc.String);
|
||||||
}
|
}
|
||||||
params.Push(f.GetIndex());
|
params.Push(f.GetIndex());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue