mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 02:41:30 +00:00
Shuffle the client screen function order a little.
The cshift is now drawn before centerprint, console and the loading plaque. Unfortunately, due to something odd going on, the sbar stuff is drawn by the console rather than by Sbar_Draw :P.
This commit is contained in:
parent
6b97967a68
commit
3aa0b1a7c0
2 changed files with 4 additions and 4 deletions
|
@ -98,11 +98,11 @@ static SCR_Func scr_funcs_normal[] = {
|
|||
0, //SCR_DrawTurtle,
|
||||
0, //SCR_DrawPause,
|
||||
SCR_DrawNet,
|
||||
Sbar_DrawCenterPrint,
|
||||
Sbar_Draw,
|
||||
SCR_CShift,
|
||||
Sbar_DrawCenterPrint,
|
||||
Con_DrawConsole,
|
||||
SCR_DrawLoading,
|
||||
SCR_CShift,
|
||||
0
|
||||
};
|
||||
|
||||
|
|
|
@ -99,11 +99,11 @@ static SCR_Func scr_funcs_normal[] = {
|
|||
0, //SCR_DrawPause,
|
||||
SCR_DrawNet,
|
||||
CL_NetGraph,
|
||||
Sbar_DrawCenterPrint,
|
||||
Sbar_Draw,
|
||||
SCR_CShift,
|
||||
Sbar_DrawCenterPrint,
|
||||
Con_DrawConsole,
|
||||
SCR_DrawLoading,
|
||||
SCR_CShift,
|
||||
0
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue