mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Fixed some poor spelling.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2673 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
ca258deb83
commit
f9b3c08f96
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue