From b513b32bcf7c8144b39a067c8ad7e20210a5bbb3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 8 Mar 2017 19:04:35 +0100 Subject: [PATCH] - reduced missing texture messages in the menu to warnings. --- src/menu/menudef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menu/menudef.cpp b/src/menu/menudef.cpp index 239366dcf..a9fd42773 100644 --- a/src/menu/menudef.cpp +++ b/src/menu/menudef.cpp @@ -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()); }