fix msvc warnings, hopefully I dont break anything

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1892 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Lance 2006-01-27 03:05:33 +00:00
parent ed4dbcb903
commit e9d294191a
1 changed files with 1 additions and 5 deletions

View File

@ -686,8 +686,6 @@ int sizeofcoord=2;
int sizeofangle=1; int sizeofangle=1;
float MSG_FromCoord(coorddata c, int bytes) float MSG_FromCoord(coorddata c, int bytes)
{ {
#pragma warning(disable:4701)
switch(bytes) switch(bytes)
{ {
case 2: //encode 1/8th precision, giving -4096 to 4096 map sizes case 2: //encode 1/8th precision, giving -4096 to 4096 map sizes
@ -1145,9 +1143,7 @@ char *MSG_ReadStringLine (void)
float MSG_ReadCoord (void) float MSG_ReadCoord (void)
{ {
#pragma warning(disable:4701) static coorddata c; //static to suppress warning about c
coorddata c;
MSG_ReadData(&c, sizeofcoord); MSG_ReadData(&c, sizeofcoord);
return MSG_FromCoord(c, sizeofcoord); return MSG_FromCoord(c, sizeofcoord);
} }