mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Fix r1438 crash on win32
git-svn-id: https://svn.eduke32.com/eduke32@1439 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
072527fff5
commit
5fcbdf3dd1
2 changed files with 4 additions and 1 deletions
|
@ -80,6 +80,10 @@ ACQUIRE_LOCK, RELEASE_LOCK, TRY_LOCK, IS_LOCKED and NULL_LOCK_INITIALIZER.
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef UNREFERENCED_PARAMETER
|
||||
#define UNREFERENCED_PARAMETER(x) x=x
|
||||
#endif
|
||||
|
||||
#ifndef NO_MALLINFO
|
||||
#define NO_MALLINFO 0
|
||||
#endif
|
||||
|
|
|
@ -33,7 +33,6 @@ DEALINGS IN THE SOFTWARE.
|
|||
|
||||
/*#define FULLSANITYCHECKS*/
|
||||
|
||||
#include "compat.h" /* For unreferenced Parameter */
|
||||
#include "nedmalloc.h"
|
||||
#ifdef _WIN32
|
||||
#include <malloc.h>
|
||||
|
|
Loading…
Reference in a new issue