mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Fix white sbars in -sgl.
(Thanks to super_ice for the patch)
This commit is contained in:
parent
b4538150bc
commit
3217faa319
2 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,7 @@
|
|||
#include "host.h"
|
||||
#include "qargs.h"
|
||||
#include "qendian.h"
|
||||
#include "sbar.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
#include "glquake.h"
|
||||
|
@ -117,6 +118,7 @@ GL_EndRendering (void)
|
|||
{
|
||||
glFlush ();
|
||||
SDL_GL_SwapBuffers ();
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
#include "host.h"
|
||||
#include "qargs.h"
|
||||
#include "qendian.h"
|
||||
#include "sbar.h"
|
||||
#include "sys.h"
|
||||
#include "va.h"
|
||||
|
||||
|
@ -118,6 +119,7 @@ GL_EndRendering (void)
|
|||
{
|
||||
glFlush ();
|
||||
SDL_GL_SwapBuffers ();
|
||||
Sbar_Changed ();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue