mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix missing text under laughing skull.
This commit is contained in:
parent
524d0dd496
commit
9ce8d5156c
1 changed files with 4 additions and 4 deletions
|
@ -3335,13 +3335,13 @@ void DoTitle()
|
|||
|
||||
int nStringWidth = MyGetStringWidth(a);
|
||||
|
||||
int y = ydim - 24;
|
||||
myprintext((xdim / 2 - nStringWidth / 2), y, a, 0);
|
||||
int y = 200 - 24;
|
||||
myprintext((320 / 2 - nStringWidth / 2), y, a, 0);
|
||||
|
||||
nStringWidth = MyGetStringWidth(b);
|
||||
|
||||
y = ydim - 16;
|
||||
myprintext((xdim / 2 - nStringWidth / 2), y, b, 0);
|
||||
y = 200 - 16;
|
||||
myprintext((320 / 2 - nStringWidth / 2), y, b, 0);
|
||||
|
||||
if ((int)totalclock > var_18)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue