[Scummvm-cvs-logs] scummvm master -> dcc8f226c02087e5960952d261615f5833c58094

dreammaster dreammaster at scummvm.org
Sun Apr 17 14:55:37 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
dcc8f226c0 TSAGE: Have copy protection turned on for all versions of the game


Commit: dcc8f226c02087e5960952d261615f5833c58094
    https://github.com/scummvm/scummvm/commit/dcc8f226c02087e5960952d261615f5833c58094
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-04-17T05:54:06-07:00

Commit Message:
TSAGE: Have copy protection turned on for all versions of the game

I'd previously incorrectly assumed copy protection would be disabled in the CD version of the game without actually playing all the way through to that point to find out.

Changed paths:
    engines/tsage/ringworld_scenes3.cpp



diff --git a/engines/tsage/ringworld_scenes3.cpp b/engines/tsage/ringworld_scenes3.cpp
index b4a456e..8183620 100644
--- a/engines/tsage/ringworld_scenes3.cpp
+++ b/engines/tsage/ringworld_scenes3.cpp
@@ -4966,10 +4966,7 @@ void Scene2310::process(Event &event) {
 }
 
 void Scene2310::dispatch() {
-	if ((_vm->getFeatures() & GF_CD) && !ConfMan.getBool("copy_protection")) {
-		// CD version of Ringworld has the copy protection disabled
-		signal();
-	} else if (_wireIndex != 5) {
+	if (_wireIndex != 5) {
 		for (int idx = 0; idx < 5; ++idx) {
 			if (_rectList[idx].contains(_globals->_events._mousePos)) {
 				_wireList[_wireIndex].setFrame(idx + 2);






More information about the Scummvm-git-logs mailing list