[Scummvm-cvs-logs] CVS: scummvm Makefile,1.25,1.26 gfx.cpp,1.55,1.56
Vincent Hamm
yazoo at users.sourceforge.net
Sat Mar 23 16:28:24 CET 2002
Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv22474
Modified Files:
Makefile gfx.cpp
Log Message:
Fixed garbadge in inventory section. Removed unused library in the Makefile
Index: Makefile
===================================================================
RCS file: /cvsroot/scummvm/scummvm/Makefile,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** Makefile 23 Mar 2002 20:34:45 -0000 1.25
--- Makefile 24 Mar 2002 00:27:00 -0000 1.26
***************
*** 7,11 ****
INCLUDES:= `sdl-config --cflags` -I./ -I./sound
CPPFLAGS= $(DEFINES) $(INCLUDES)
! LIBS = `sdl-config --libs` -lreadline -lncurses -lhistory -lm
ZIPFILE := scummvm-`date '+%Y-%m-%d'`.zip
--- 7,11 ----
INCLUDES:= `sdl-config --cflags` -I./ -I./sound
CPPFLAGS= $(DEFINES) $(INCLUDES)
! LIBS = `sdl-config --libs` -lncurses -lm
ZIPFILE := scummvm-`date '+%Y-%m-%d'`.zip
Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gfx.cpp,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** gfx.cpp 21 Mar 2002 00:40:18 -0000 1.55
--- gfx.cpp 24 Mar 2002 00:27:00 -0000 1.56
***************
*** 68,71 ****
--- 68,73 ----
VirtScreen *vs = &virtscr[slot];
int size;
+ int i;
+ byte *ptr;
assert(height>=0);
***************
*** 90,93 ****
--- 92,99 ----
vs->screenPtr = _videoBuffer+328*top;
+ ptr=vs->screenPtr;
+ for(i=0;i<size;i++) // reset background ?
+ *ptr++=0;
+
if (twobufs) {
createResource(rtBuffer, slot+5, size);
More information about the Scummvm-git-logs
mailing list