width and height name issues

This commit is contained in:
Bill Currie 2000-10-21 21:17:51 +00:00
parent 5c92b35c6e
commit f28f087ddc

View file

@ -526,7 +526,6 @@ void VID_Init(unsigned char *palette)
int i; int i;
GLint attribs[32]; GLint attribs[32];
char gldir[MAX_OSPATH]; char gldir[MAX_OSPATH];
int width = 640, height = 480;
VID_GetWindowSize (640, 480); VID_GetWindowSize (640, 480);
@ -563,17 +562,17 @@ void VID_Init(unsigned char *palette)
if (vid.conheight < 200) if (vid.conheight < 200)
vid.conheight = 200; vid.conheight = 200;
fc = fxMesaCreateContext(0, findres(&width, &height), GR_REFRESH_75Hz, fc = fxMesaCreateContext(0, findres(&scr_width, &scr_height), GR_REFRESH_75Hz,
attribs); attribs);
if (!fc) if (!fc)
Sys_Error("Unable to create 3DFX context.\n"); Sys_Error("Unable to create 3DFX context.\n");
fxMesaMakeCurrent(fc); fxMesaMakeCurrent(fc);
if (vid.conheight > height) if (vid.conheight > scr_height)
vid.conheight = height; vid.conheight = scr_height;
if (vid.conwidth > width) if (vid.conwidth > scr_width)
vid.conwidth = width; vid.conwidth = scr_width;
vid.width = vid.conwidth; vid.width = vid.conwidth;
vid.height = vid.conheight; vid.height = vid.conheight;
@ -592,7 +591,7 @@ void VID_Init(unsigned char *palette)
// Check for 3DFX Extensions and initialize them. // Check for 3DFX Extensions and initialize them.
VID_Init8bitPalette(); VID_Init8bitPalette();
Con_Printf ("Video mode %dx%d initialized.\n", width, height); Con_Printf ("Video mode %dx%d initialized.\n", scr_width, scr_height);
vid.recalc_refdef = 1; // force a surface cache flush vid.recalc_refdef = 1; // force a surface cache flush
} }