[Scummvm-cvs-logs] CVS: scummvm/common scummsys.h,1.29,1.30
Nicolas Bacca
arisme at users.sourceforge.net
Sun Jul 13 05:16:28 CEST 2003
Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv15913
Modified Files:
scummsys.h
Log Message:
Do not use free_check on WinCE
Index: scummsys.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/scummsys.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- scummsys.h 14 Jun 2003 23:05:40 -0000 1.29
+++ scummsys.h 13 Jul 2003 12:15:43 -0000 1.30
@@ -422,8 +422,10 @@
// 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
More information about the Scummvm-git-logs
mailing list