mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +00:00
remove all pure whitepsace diffs between gl_screen.c and screen.c
This commit is contained in:
parent
6569283738
commit
10e2d388db
2 changed files with 3 additions and 6 deletions
|
@ -282,7 +282,6 @@ SCR_CalcRefdef (void)
|
||||||
int h;
|
int h;
|
||||||
qboolean full = false;
|
qboolean full = false;
|
||||||
|
|
||||||
|
|
||||||
scr_fullupdate = 0; // force a background redraw
|
scr_fullupdate = 0; // force a background redraw
|
||||||
vid.recalc_refdef = 0;
|
vid.recalc_refdef = 0;
|
||||||
|
|
||||||
|
@ -433,7 +432,6 @@ SCR_DrawRam (void)
|
||||||
Draw_Pic (scr_vrect.x + 32, scr_vrect.y, scr_ram);
|
Draw_Pic (scr_vrect.x + 32, scr_vrect.y, scr_ram);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
SCR_DrawTurtle
|
SCR_DrawTurtle
|
||||||
*/
|
*/
|
||||||
|
@ -558,6 +556,7 @@ SCR_DrawPause (void)
|
||||||
(vid.height - 48 - pic->height) / 2, pic);
|
(vid.height - 48 - pic->height) / 2, pic);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
screen.c
|
screen.c
|
||||||
|
|
||||||
|
@ -120,7 +119,6 @@ cvar_t *crosshaircolor;
|
||||||
cvar_t *cl_crossx;
|
cvar_t *cl_crossx;
|
||||||
cvar_t *cl_crossy;
|
cvar_t *cl_crossy;
|
||||||
|
|
||||||
|
|
||||||
qboolean scr_initialized; // ready to draw
|
qboolean scr_initialized; // ready to draw
|
||||||
|
|
||||||
qpic_t *scr_ram;
|
qpic_t *scr_ram;
|
||||||
|
@ -315,6 +313,7 @@ SCR_CalcRefdef (void)
|
||||||
|
|
||||||
// bound viewsize
|
// bound viewsize
|
||||||
Cvar_SetValue (scr_viewsize, bound (30, scr_viewsize->int_val, 120));
|
Cvar_SetValue (scr_viewsize, bound (30, scr_viewsize->int_val, 120));
|
||||||
|
|
||||||
// bound field of view
|
// bound field of view
|
||||||
Cvar_SetValue (scr_fov, bound (10, scr_fov->value, 170));
|
Cvar_SetValue (scr_fov, bound (10, scr_fov->value, 170));
|
||||||
|
|
||||||
|
@ -455,8 +454,6 @@ SCR_Init (void)
|
||||||
scr_initialized = true;
|
scr_initialized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
SCR_DrawRam
|
SCR_DrawRam
|
||||||
*/
|
*/
|
||||||
|
@ -720,6 +717,7 @@ WritePCXfile (char *filename, byte * data, int width, int height,
|
||||||
|
|
||||||
// write output file
|
// write output file
|
||||||
length = pack - (byte *) pcx;
|
length = pack - (byte *) pcx;
|
||||||
|
|
||||||
if (upload)
|
if (upload)
|
||||||
CL_StartUpload ((void *) pcx, length);
|
CL_StartUpload ((void *) pcx, length);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue