mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-13 03:33:28 +00:00
Added gl_mtex_enum and modestate, also added VID_SetCaption support.
This commit is contained in:
parent
c29a59f262
commit
4f6b7053ac
1 changed files with 10 additions and 0 deletions
|
@ -84,6 +84,9 @@ const char *gl_extensions;
|
|||
|
||||
qboolean is8bit = false;
|
||||
qboolean gl_mtexable = false;
|
||||
int gl_mtex_enum = TEXTURE0_SGIS;
|
||||
|
||||
int modestate;
|
||||
|
||||
static qboolean mouse_avail;
|
||||
static float mouse_x, mouse_y;
|
||||
|
@ -672,3 +675,10 @@ void
|
|||
VID_UnlockBuffer ( void )
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
VID_SetCaption (char *text)
|
||||
{
|
||||
SDL_WM_SetCaption(text, NULL);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue