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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Jul 28 03:04:59 CEST 2007


Revision: 28254
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28254&view=rev
Author:   thebluegr
Date:     2007-07-27 18:04:59 -0700 (Fri, 27 Jul 2007)

Log Message:
-----------
The demo version of IHNM has no options panel, therefore the options icon and the options panel shortcuts have been disabled for the IHNM demo

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

Modified: scummvm/trunk/engines/saga/interface.cpp
===================================================================
--- scummvm/trunk/engines/saga/interface.cpp	2007-07-28 01:03:54 UTC (rev 28253)
+++ scummvm/trunk/engines/saga/interface.cpp	2007-07-28 01:04:59 UTC (rev 28254)
@@ -337,8 +337,9 @@
 		_vm->_script->_skipSpeeches = false;
 		_vm->_actor->_protagonist->_targetObject = ID_NOTHING;
 		unlockMode();
-		if (_panelMode == kPanelMain || _panelMode == kPanelChapterSelection){
-			_saveReminderState = 1;
+		if (_panelMode == kPanelMain || _panelMode == kPanelChapterSelection) {
+			if (_vm->getGameId() != GID_IHNM_DEMO)
+				_saveReminderState = 1;
 		}
 		draw();
 	}
@@ -383,9 +384,11 @@
 
 	if (mode == kPanelMain) {
 		_inMainMode = true;
-		_saveReminderState = 1; //TODO: blinking timeout
+		if (_vm->getGameId() != GID_IHNM_DEMO)
+			_saveReminderState = 1; //TODO: blinking timeout
 	} else if (mode == kPanelChapterSelection) {
-		_saveReminderState = 1;
+		if (_vm->getGameId() != GID_IHNM_DEMO)
+			_saveReminderState = 1;
 	} else {
 		if (mode == kPanelConverse) {
 			_inMainMode = false;


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