Fix male assassin unable to use weapons properly.

Remove zombie/gonome bullet resistance.
Make it slighly harder to gib monsters.
Small navigation fix.
Fix compilation on Visual Studio 2015 and 2017.
Fix "use_monstermod" keyvalue not working.
This commit is contained in:
Giegue
2023-04-15 19:23:20 -03:00
parent fb92c2369f
commit 66be4861a3
9 changed files with 146 additions and 46 deletions

View File

@@ -74,14 +74,17 @@
#endif //defined WIN32
#endif
#if defined (_WIN32) && defined (_MSC_VER)
// VS2015 and newer already has va_copy defined
#if defined (_WIN32) && defined (_MSC_VER) && _MSC_VER < 1900
// On x86 va_list is just a pointer.
#define va_copy(dst,src) ((dst)=(src))
#else
// Some systems that do not supply va_copy have __va_copy instead, since
// that was the name used in the draft proposal.
#if !defined(__GNUC__) || __GNUC__ < 3
#define va_copy __va_copy
#if (linux)
// Some systems that do not supply va_copy have __va_copy instead, since
// that was the name used in the draft proposal.
#if !defined(__GNUC__) || __GNUC__ < 3
#define va_copy __va_copy
#endif
#endif
#endif