mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-19 06:51:11 +00:00
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:
parent
e9d294191a
commit
88dfd74e81
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue