[Scummvm-cvs-logs] CVS: scummvm Makefile,1.45,1.46 actor.cpp,1.75,1.76
Vincent Hamm
yazoo at users.sourceforge.net
Sat May 25 11:57:02 CEST 2002
Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv10633
Modified Files:
Makefile actor.cpp
Log Message:
fixed a missplaced memset in akos code. Fixed a typo in the Makefile
Index: Makefile
===================================================================
RCS file: /cvsroot/scummvm/scummvm/Makefile,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- Makefile 25 May 2002 18:50:06 -0000 1.45
+++ Makefile 25 May 2002 18:56:28 -0000 1.46
@@ -21,7 +21,7 @@
# Comment this if you want to disable SDL output
OBJS = sdl.o
-INCLUDE += `sdl-config --cflags`
+INCLUDES += `sdl-config --cflags`
LIBS += `sdl-config --libs`
DEFINES += -DUNIX
Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/actor.cpp,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- actor.cpp 23 May 2002 21:22:06 -0000 1.75
+++ actor.cpp 25 May 2002 18:56:28 -0000 1.76
@@ -1008,7 +1008,7 @@
setupActorScale();
/* First, zero initialize all fields */
- memset(&ar, 0, sizeof(ar));
+ //memset(&ar, 0, sizeof(ar));
ar.x = x - _vm->virtscr->xstart;
ar.y = y - elevation;
More information about the Scummvm-git-logs
mailing list