From f9b3c08f9691f708ac8f98531ffd56ff5a1eec9e Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Sat, 22 Sep 2007 19:31:01 +0000 Subject: [PATCH] Fixed some poor spelling. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2673 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/vid.h | 2 +- engine/sw/vid_win2.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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;