Fixed a few Cygwin warnings: Removed/commented unused variables, added newline at end of crc.c

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2584 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2007-08-07 17:49:35 +00:00
parent d3565abc3a
commit 865a5a003d
11 changed files with 8 additions and 17 deletions

View File

@ -1771,7 +1771,9 @@ qboolean SCR_ScreenShot (char *filename)
int truewidth, trueheight;
qbyte *buffer;
int i, c, temp;
#if defined(AVAIL_PNGLIB) || defined(AVAIL_JPEGLIB)
extern cvar_t scr_sshot_compression;
#endif
#define MAX_PREPAD 128
char *ext;

View File

@ -576,7 +576,6 @@ void Master_AddMasterHTTP (char *address, int mastertype, char *description)
//build a linked list of masters. Doesn't duplicate addresses.
qboolean Master_LoadMasterList (char *filename, int defaulttype, int depth)
{
extern char *com_basedir;
vfsfile_t *f;
char line[1024];
char file[1024];

View File

@ -514,10 +514,8 @@ void PF_CL_drawresetcliparea (progfuncs_t *prinst, struct globalvars_s *pr_globa
//void (float width, vector rgb, float alpha, float flags, vector pos1, ...) drawline;
void PF_CL_drawline (progfuncs_t *prinst, struct globalvars_s *pr_globals)
{
float width = G_FLOAT(OFS_PARM0);
float *rgb = G_VECTOR(OFS_PARM1);
float alpha = G_FLOAT(OFS_PARM2);
float flags = G_FLOAT(OFS_PARM3);
float *pos = G_VECTOR(OFS_PARM4);
int numpoints = *prinst->callargc-4;

View File

@ -1461,9 +1461,6 @@ void D3DSucks(void)
qboolean R_ApplyRenderer (rendererstate_t *newr)
{
extern model_t *loadmodel;
extern int host_hunklevel;
if (newr->bpp == -1)
return false;

View File

@ -1715,8 +1715,6 @@ qboolean Sbar_ShouldDraw (void)
#endif
qboolean headsup;
int deadcount=0;
if (scr_con_current == vid.height)
return false; // console is full screen
@ -1777,9 +1775,6 @@ Sbar_Draw
*/
void Sbar_Draw (void)
{
#ifdef TEXTEDITOR
extern qboolean editoractive;
#endif
qboolean headsup;
char st[512];
int pnum;

View File

@ -63,7 +63,6 @@ static int OSS_InitCard(soundcardinfo_t *sc, int cardnum)
int fmt;
int tmp;
int i;
char *s;
struct audio_buf_info info;
int caps;
char *snddev = NULL;

View File

@ -323,12 +323,12 @@ void Validation_CheckIfResponse(char *text)
//now do the validation
{
f_query_t *query = NULL;
//f_query_t *query = NULL;
int itemp;
char buffer[10];
unsigned short query_crc = 0;
unsigned long user_crc = 0;
unsigned long auth_crc = 0;
//unsigned long auth_crc = 0;
//char auth_answer; //unreferenced
//int slot; //unreferenced

View File

@ -1244,7 +1244,9 @@ entity_t *CL_EntityNum(int num)
float CalcFov (float fov_x, float width, float height);
void SCR_VRectForPlayer(vrect_t *vrect, int pnum)
{
#ifdef GLQUAKE
extern int glwidth, glheight;
#endif
#if MAX_SPLITS > 4
#pragma warning "Please change this function to cope with the new MAX_SPLITS value"
#endif

View File

@ -95,4 +95,4 @@ void QCRC_AddBlock (unsigned short *crcvalue, qbyte *start, int count)
{
while (count--)
QCRC_ProcessByte(crcvalue, *start++);
}
}

View File

@ -2605,7 +2605,6 @@ void QCC_main (int argc, char **argv) //as part of the quake engine
int p;
#ifndef QCCONLY
extern char qcc_gamedir[];
char destfile2[1024], *s2;
#endif
char *s;

View File

@ -217,7 +217,7 @@ void SV_MVD_RunPendingConnections(void)
}
if (end)
{ //we found the end of the header
qboolean server = false, reverse = false;
qboolean server = false;
char *start, *lineend;
int versiontouse = 0;
int raw = 0;