diff --git a/engine/client/vid.h b/engine/client/vid.h index 65d100a5c..d031bcc87 100644 --- a/engine/client/vid.h +++ b/engine/client/vid.h @@ -35,7 +35,7 @@ typedef struct { int bpp; int rate; int multisample; //for opengl antialiasing (which requires context stuff) - float streach; + float stretch; char glrenderer[MAX_QPATH]; r_qrenderer_t renderer; qboolean allow_modex; diff --git a/engine/sw/vid_win2.c b/engine/sw/vid_win2.c index d0ba37ae3..e631c44df 100644 --- a/engine/sw/vid_win2.c +++ b/engine/sw/vid_win2.c @@ -630,7 +630,7 @@ static qboolean SWimp_InitGraphics( rendererstate_t *info, qboolean fullscreen ) // free resources in use SWimp_Shutdown (); - usingstretch = info->streach; + usingstretch = info->stretch; if (fullscreen || usingstretch < 0.25) usingstretch = 1; @@ -896,7 +896,7 @@ qboolean SWVID_Init (rendererstate_t *info, unsigned char *palette) if (info->height > MAXHEIGHT) return false; - usingstretch = info->streach; + usingstretch = info->stretch; if (usingstretch <= 0.25) usingstretch = 1;