turn off annoying warnings in Visual Studio

This commit is contained in:
Derek S. Ray
2015-04-10 17:14:41 -04:00
parent 9fc9a86d34
commit 8398e30dd1

View File

@@ -15,6 +15,11 @@
#include "sp_lev.h"
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4244)
#endif
typedef void (*select_iter_func)(int, int, genericptr_t);
extern void FDECL(mkmap, (lev_init *));
@@ -5222,4 +5227,8 @@ const char *name;
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
/*sp_lev.c*/