mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-30 16:30:43 +00:00
fix the broken sdl/sdl32 hud
This commit is contained in:
parent
018a0b3bb6
commit
97f54e22df
3 changed files with 6 additions and 4 deletions
|
@ -827,13 +827,13 @@ C_Init (void)
|
|||
|
||||
con_debuglog = COM_CheckParm ("-condebug");
|
||||
|
||||
// The console will get resized, so assume initial size is 320x200
|
||||
con_data.view = view_new (0, 0, 320, 200, grav_northeast);
|
||||
|
||||
console_view = view_new (0, 0, 320, 200, grav_northwest);
|
||||
say_view = view_new (0, 0, 320, 8, grav_northwest);
|
||||
notify_view = view_new (0, 8, 320, 32, grav_northwest);
|
||||
menu_view = view_new (0, 0, 320, 200, grav_center);
|
||||
hud_view = view_new (0, 0, vid.conwidth, vid.conheight, grav_northeast);
|
||||
hud_view = view_new (0, 0, 320, 200, grav_northeast);
|
||||
|
||||
view_add (con_data.view, say_view);
|
||||
view_add (con_data.view, notify_view);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue