mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
- removed bad 'return' in C_MidPrint definition.
This commit is contained in:
parent
37166b5faf
commit
40da1dbfbc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue