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:
Bill Currie 2013-01-08 20:37:36 +09:00
parent 6b97967a68
commit 3aa0b1a7c0
2 changed files with 4 additions and 4 deletions

View file

@ -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
};

View file

@ -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
};