mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
Do not use free_check on WinCE
svn-id: r8975
This commit is contained in:
parent
beef7347e6
commit
a2f2d4c40a
@ -422,8 +422,10 @@ void operator delete(void *ptr);
|
||||
// Since 'new' now returns a memory block inited to 0xE7E7E7E7 we might
|
||||
// get some invocations of free() with that param. We check for those here.
|
||||
// That allows us to set a debugger breakpoint to catch it.
|
||||
#ifndef _WIN32_WCE
|
||||
#define free(x) free_check(x)
|
||||
void free_check(void *ptr);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user