mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
apply the viddef_t patches from Jukka Sorjonen <jukka.sorjonen@asikkala.fi>
This commit is contained in:
parent
e1dc8ce3fe
commit
b1ce871546
7 changed files with 7 additions and 7 deletions
|
@ -49,7 +49,7 @@
|
|||
#include <console.h>
|
||||
#include <client.h>
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
unsigned short d_8to16table[256];
|
||||
|
||||
cvar_t *_windowed_mouse;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <quakedef.h>
|
||||
#include <d_local.h>
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
|
||||
#define BASEWIDTH 320
|
||||
#define BASEHEIGHT 200
|
||||
|
|
|
@ -45,7 +45,7 @@ cvar_t *_windowed_mouse;
|
|||
|
||||
static float old_windowed_mouse = 0;
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
unsigned short d_8to16table[256];
|
||||
|
||||
// The original defaults
|
||||
|
|
|
@ -84,7 +84,7 @@ typedef struct
|
|||
int output;
|
||||
} keymap_t;
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
unsigned short d_8to16table[256];
|
||||
|
||||
static Colormap x_cmap;
|
||||
|
|
|
@ -112,7 +112,7 @@ typedef struct
|
|||
int output;
|
||||
} keymap_t;
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
unsigned short d_8to16table[256];
|
||||
|
||||
int num_shades=32;
|
||||
|
|
|
@ -88,7 +88,7 @@ static HICON hIcon;
|
|||
|
||||
extern qboolean mouseactive; // from in_win.c
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
|
||||
#define MODE_WINDOWED 0
|
||||
#define MODE_SETTABLE_WINDOW 2
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
viddef_t vid; // global video state
|
||||
extern viddef_t vid; // global video state
|
||||
unsigned short d_8to16table[256];
|
||||
|
||||
Window x_win;
|
||||
|
|
Loading…
Reference in a new issue