Fixed compiler warnings in malloc.cpp on x86

Fixes #3248

Thanks to @laziem
This commit is contained in:
Lemongrass3110
2018-06-27 22:42:11 +02:00
parent 796a67be4b
commit a4336fd8ae

View File

@@ -10,7 +10,11 @@
#include "core.hpp"
#include "showmsg.hpp"
#define FREED_POINTER 0xdeadbeafL
#if defined(__64BIT__)
#define FREED_POINTER 0xdeadbeafL
#else
#define FREED_POINTER 0x7eadbeafL
#endif
////////////// Memory Libraries //////////////////