[Scummvm-cvs-logs] SF.net SVN: scummvm: [28912] scummvm/trunk/engines/saga/render.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Sep 16 03:38:24 CEST 2007


Revision: 28912
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28912&view=rev
Author:   thebluegr
Date:     2007-09-15 18:38:23 -0700 (Sat, 15 Sep 2007)

Log Message:
-----------
Don't draw the scene background when actors are disabled

Modified Paths:
--------------
    scummvm/trunk/engines/saga/render.cpp

Modified: scummvm/trunk/engines/saga/render.cpp
===================================================================
--- scummvm/trunk/engines/saga/render.cpp	2007-09-15 16:54:22 UTC (rev 28911)
+++ scummvm/trunk/engines/saga/render.cpp	2007-09-16 01:38:23 UTC (rev 28912)
@@ -88,7 +88,8 @@
 	if (!(_flags & (RF_DEMO_SUBST | RF_MAP) || _vm->_interface->getMode() == kPanelPlacard)) {
 		if (_vm->_interface->getFadeMode() != kFadeOut) {
 			// Display scene background
-			_vm->_scene->draw();
+			if (!(_flags & RF_DISABLE_ACTORS))
+				_vm->_scene->draw();
 
 			if (_vm->_puzzle->isActive()) {
 				_vm->_puzzle->movePiece(mousePoint);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list