From 40da1dbfbc63d5d06128387bc4c6a40c89435a59 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 31 Oct 2018 13:13:32 +0100 Subject: [PATCH] - removed bad 'return' in C_MidPrint definition. --- wadsrc/static/zscript/compatibility.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/compatibility.txt b/wadsrc/static/zscript/compatibility.txt index eaf77e0a46..43280bdcc7 100644 --- a/wadsrc/static/zscript/compatibility.txt +++ b/wadsrc/static/zscript/compatibility.txt @@ -11,7 +11,7 @@ extend class Object { let f = Font.GetFont(fontname); if (f == null) return; - return Console.MidPrint(f, textlabel, bold); + Console.MidPrint(f, textlabel, bold); } }