[Scummvm-cvs-logs] CVS: scummvm/common main.cpp,1.35.2.1,1.35.2.2

Travis Howell kirben at users.sourceforge.net
Wed Aug 6 06:55:42 CEST 2003


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv24496/common

Modified Files:
      Tag: branch-0-5-0
	main.cpp 
Log Message:

Clear new meory with 0 again, to allow simon1 on macs


Index: main.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/main.cpp,v
retrieving revision 1.35.2.1
retrieving revision 1.35.2.2
diff -u -d -r1.35.2.1 -r1.35.2.2
--- main.cpp	5 Aug 2003 12:44:14 -0000	1.35.2.1
+++ main.cpp	6 Aug 2003 13:53:25 -0000	1.35.2.2
@@ -245,7 +245,7 @@
 
 #ifndef __PALM_OS__
 void *operator new(size_t size) {
-	return memset(malloc(size), 0xE7, size);
+	return memset(malloc(size), 0, size);
 }
 
 void operator delete(void *ptr) {





More information about the Scummvm-git-logs mailing list