- removed bad 'return' in C_MidPrint definition.

This commit is contained in:
Christoph Oelckers 2018-10-31 13:13:32 +01:00
parent 37166b5faf
commit 40da1dbfbc

View file

@ -11,7 +11,7 @@ extend class Object
{ {
let f = Font.GetFont(fontname); let f = Font.GetFont(fontname);
if (f == null) return; if (f == null) return;
return Console.MidPrint(f, textlabel, bold); Console.MidPrint(f, textlabel, bold);
} }
} }