[Scummvm-cvs-logs] CVS: scummvm/queen graphics.cpp,1.61,1.62

Gregory Montoir cyx at users.sourceforge.net
Tue Dec 30 14:02:01 CET 2003


Update of /cvsroot/scummvm/scummvm/queen
In directory sc8-pr-cvs1:/tmp/cvs-serv1432

Modified Files:
	graphics.cpp 
Log Message:
remove hack from original code, this was apparently only needed for SELECT_VERB (from what I understood, bob 16 was supposed to highlight the current selected verb ; but the original doesn't use it at all)

Index: graphics.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/queen/graphics.cpp,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- graphics.cpp	29 Dec 2003 20:18:31 -0000	1.61
+++ graphics.cpp	30 Dec 2003 22:01:16 -0000	1.62
@@ -412,7 +412,7 @@
 void Graphics::bobClear(uint32 bobnum) {
 	BobSlot *pbs = &_bobs[bobnum];
 	pbs->clear();
-	if (_vm->display()->fullscreen() || bobnum == 16) { // FIXME: does bob number 16 really used ?
+	if (_vm->display()->fullscreen()) {
 		pbs->box.y2 = GAME_SCREEN_HEIGHT - 1;
 	}
 }





More information about the Scummvm-git-logs mailing list