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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Aug 25 21:59:07 CEST 2007


Revision: 28733
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28733&view=rev
Author:   thebluegr
Date:     2007-08-25 12:59:07 -0700 (Sat, 25 Aug 2007)

Log Message:
-----------
Fixed a regression

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

Modified: scummvm/trunk/engines/saga/animation.cpp
===================================================================
--- scummvm/trunk/engines/saga/animation.cpp	2007-08-25 19:33:25 UTC (rev 28732)
+++ scummvm/trunk/engines/saga/animation.cpp	2007-08-25 19:59:07 UTC (rev 28733)
@@ -113,16 +113,17 @@
 		_vm->_interface->setStatusText("");
 		_vm->_interface->setSaveReminderState(0);
 		_vm->_interface->rememberMode();
-		if (_cutAwayMode == kPanelVideo)
-			_vm->_interface->setMode(kPanelVideo);
-		else
-			_vm->_interface->setMode(kPanelCutaway);
 		_cutawayActive = true;
 	} else {
 		// If another cutaway is up, start the next cutaway immediately
 		startImmediately = true;
 	}
 
+	if (_cutAwayMode == kPanelVideo)
+		_vm->_interface->setMode(kPanelVideo);
+	else
+		_vm->_interface->setMode(kPanelCutaway);
+
 	// Set the initial background and palette for the cutaway
 	ResourceContext *context = _vm->_resource->getContext(GAME_RESOURCEFILE);
 


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