mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 13:10:34 +00:00
Make sure the level name does not over write the secrets count.
This commit is contained in:
parent
9b9fde244b
commit
6e87c4cea6
1 changed files with 2 additions and 1 deletions
|
@ -455,7 +455,8 @@ draw_solo (view_t *view)
|
|||
|
||||
// draw level name
|
||||
l = strlen (cl.levelname);
|
||||
draw_string (view, 232 - l * 4, 12, cl.levelname);
|
||||
l = 232 - l * 4;
|
||||
draw_string (view, max (l, 152), 12, cl.levelname);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue