mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
fix -sdl32 crashing on startup (vid_bitdepth init got lost)
This commit is contained in:
parent
0ff949fdef
commit
7f5c99efdc
3 changed files with 5 additions and 2 deletions
|
@ -43,6 +43,7 @@ extern struct cvar_s *vid_fullscreen;
|
||||||
extern struct cvar_s *vid_system_gamma;
|
extern struct cvar_s *vid_system_gamma;
|
||||||
extern struct cvar_s *vid_width;
|
extern struct cvar_s *vid_width;
|
||||||
extern struct cvar_s *vid_height;
|
extern struct cvar_s *vid_height;
|
||||||
|
extern struct cvar_s *vid_bitdepth;
|
||||||
|
|
||||||
typedef struct vrect_s {
|
typedef struct vrect_s {
|
||||||
int x,y,width,height;
|
int x,y,width,height;
|
||||||
|
|
|
@ -19,6 +19,8 @@ static const char rcsid[] =
|
||||||
#include "QF/va.h"
|
#include "QF/va.h"
|
||||||
#include "QF/vid.h"
|
#include "QF/vid.h"
|
||||||
|
|
||||||
|
cvar_t *vid_bitdepth;
|
||||||
|
|
||||||
extern SDL_Surface *screen;
|
extern SDL_Surface *screen;
|
||||||
|
|
||||||
|
|
||||||
|
@ -77,4 +79,6 @@ VID_Init_Cvars ()
|
||||||
"Toggles fullscreen mode");
|
"Toggles fullscreen mode");
|
||||||
vid_system_gamma = Cvar_Get ("vid_system_gamma", "1", CVAR_ARCHIVE, NULL,
|
vid_system_gamma = Cvar_Get ("vid_system_gamma", "1", CVAR_ARCHIVE, NULL,
|
||||||
"Use system gamma control if available");
|
"Use system gamma control if available");
|
||||||
|
vid_bitdepth = Cvar_Get ("vid_bitdepth", "8", CVAR_ROM, NULL, "Sets "
|
||||||
|
"display bitdepth (supported modes: 8 16 32)");
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,8 +55,6 @@ static const char rcsid[] =
|
||||||
HWND mainwindow;
|
HWND mainwindow;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
cvar_t *vid_bitdepth;
|
|
||||||
|
|
||||||
// The original defaults
|
// The original defaults
|
||||||
#define BASEWIDTH 320
|
#define BASEWIDTH 320
|
||||||
#define BASEHEIGHT 200
|
#define BASEHEIGHT 200
|
||||||
|
|
Loading…
Reference in a new issue