unfixed static stuff, and put #pragma warning(disable:4701) where msvc complains

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

View File

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