[Scummvm-cvs-logs] scummvm master -> 834cd6cc50da6406db5de94206ab5a26f781f2aa

Strangerke Strangerke at scummvm.org
Mon Mar 3 18:57:09 CET 2014


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:
834cd6cc50 VOYEUR: Remove 2 parameters matching the default parameter in function calls


Commit: 834cd6cc50da6406db5de94206ab5a26f781f2aa
    https://github.com/scummvm/scummvm/commit/834cd6cc50da6406db5de94206ab5a26f781f2aa
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-03-03T09:55:00-08:00

Commit Message:
VOYEUR: Remove 2 parameters matching the default parameter in function calls

Changed paths:
    engines/voyeur/files_threads.cpp
    engines/voyeur/voyeur.cpp



diff --git a/engines/voyeur/files_threads.cpp b/engines/voyeur/files_threads.cpp
index c3bad81..4ab3352 100644
--- a/engines/voyeur/files_threads.cpp
+++ b/engines/voyeur/files_threads.cpp
@@ -1102,7 +1102,7 @@ void ThreadResource::doRoom() {
 	vm.makeViewFinderP();
 	voy._fadingType = 0;
 	
-	if (!vm._bVoy->getBoltGroup(vm._playStampGroupId, true))
+	if (!vm._bVoy->getBoltGroup(vm._playStampGroupId))
 		return;
 
 	vm._graphicsManager->_backColors = vm._bVoy->boltEntry(vm._playStampGroupId + 1)._cMapResource;
diff --git a/engines/voyeur/voyeur.cpp b/engines/voyeur/voyeur.cpp
index e189145..85dabf2 100644
--- a/engines/voyeur/voyeur.cpp
+++ b/engines/voyeur/voyeur.cpp
@@ -436,7 +436,7 @@ void VoyeurEngine::showTitleScreen() {
 void VoyeurEngine::doOpening() {
 	_graphicsManager->screenReset();
 
-	if (!_bVoy->getBoltGroup(0x200, true))
+	if (!_bVoy->getBoltGroup(0x200))
 		return;
 
 	byte *frameTable = _bVoy->memberAddr(0x215);






More information about the Scummvm-git-logs mailing list