mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Remove calls to Sbar_Changed from the libraries.
If this breaks things, we'll have to sort something out, but again, no libs reaching into the exe.
This commit is contained in:
parent
5efc78b920
commit
b9bb7d95bb
8 changed files with 0 additions and 14 deletions
|
@ -891,8 +891,6 @@ Draw_FadeScreen (void)
|
|||
qfglEnd ();
|
||||
qfglColor3ubv (color_white);
|
||||
qfglEnable (GL_TEXTURE_2D);
|
||||
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -162,9 +162,6 @@ SCR_CalcRefdef (void)
|
|||
scr_fullupdate = 0;
|
||||
vid.recalc_refdef = 0;
|
||||
|
||||
// force the status bar to redraw
|
||||
Sbar_Changed ();
|
||||
|
||||
// bound field of view
|
||||
Cvar_SetValue (scr_fov, bound (1, scr_fov->value, 170));
|
||||
|
||||
|
@ -278,8 +275,6 @@ SCR_DrawPause (void)
|
|||
void
|
||||
SCR_SetUpToDrawConsole (void)
|
||||
{
|
||||
if (clearconsole++ < vid.numpages)
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -223,7 +223,6 @@ SCR_UpdateScreen (double realtime, SCR_Func scr_3dfunc, SCR_Func *scr_funcs)
|
|||
if (scr_fullupdate++ < vid.numpages) { // clear the entire screen
|
||||
scr_copyeverything = 1;
|
||||
Draw_TileClear (0, 0, vid.width, vid.height);
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
pconupdate = NULL;
|
||||
|
|
|
@ -177,7 +177,6 @@ SCR_UpdateScreen (double realtime, SCR_Func scr_3dfunc, SCR_Func *scr_funcs)
|
|||
if (scr_fullupdate++ < vid.numpages) { // clear the entire screen
|
||||
scr_copyeverything = 1;
|
||||
Draw_TileClear (0, 0, vid.width, vid.height);
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
pconupdate = NULL;
|
||||
|
|
|
@ -198,7 +198,6 @@ GL_EndRendering (void)
|
|||
{
|
||||
qfglFinish ();
|
||||
qf_fxMesaSwapBuffers ();
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
static unsigned int resolutions[][3] = {
|
||||
|
|
|
@ -183,7 +183,6 @@ GL_EndRendering (void)
|
|||
{
|
||||
qfglFinish ();
|
||||
qfglXSwapBuffers (x_disp, x_win);
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -95,7 +95,6 @@ GL_EndRendering (void)
|
|||
{
|
||||
qfglFinish ();
|
||||
SDL_GL_SwapBuffers ();
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -373,8 +373,6 @@ GL_EndRendering (void)
|
|||
}
|
||||
}
|
||||
}
|
||||
if (fullsbardraw)
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue