mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Fix alignment in Multiplayer -> Join Network Server -> Address Book menu.
Relates to issue #87.
This commit is contained in:
parent
490c5c15a3
commit
585e7dbfda
1 changed files with 1 additions and 1 deletions
|
@ -3660,7 +3660,7 @@ AddressBook_MenuInit(void)
|
|||
int i;
|
||||
float scale = SCR_GetMenuScale();
|
||||
|
||||
s_addressbook_menu.x = viddef.width / 2 - 142;
|
||||
s_addressbook_menu.x = viddef.width / scale / 2 - 142 / scale;
|
||||
s_addressbook_menu.y = viddef.height / (2 * scale) - 58;
|
||||
s_addressbook_menu.nitems = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue