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

Strangerke Strangerke at scummvm.org
Mon Mar 3 19:07:34 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:
e6b56b0b85 VOYEUR: Remove the second (useless) parameter of freeBoltGroup()


Commit: e6b56b0b85f6cf6156621b85ecdfb76bea0395ff
    https://github.com/scummvm/scummvm/commit/e6b56b0b85f6cf6156621b85ecdfb76bea0395ff
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-03-03T10:05:55-08:00

Commit Message:
VOYEUR: Remove the second (useless) parameter of freeBoltGroup()

Changed paths:
    engines/voyeur/files.cpp
    engines/voyeur/files.h



diff --git a/engines/voyeur/files.cpp b/engines/voyeur/files.cpp
index 71ef15c..20d70f8 100644
--- a/engines/voyeur/files.cpp
+++ b/engines/voyeur/files.cpp
@@ -260,7 +260,7 @@ BoltGroup *BoltFile::getBoltGroup(uint16 id) {
 	return _state._curGroupPtr;
 }
 
-void BoltFile::freeBoltGroup(uint16 id, bool freeEntries) {
+void BoltFile::freeBoltGroup(uint16 id) {
 	_state._curLibPtr = this;
 	_state._curGroupPtr = &_groups[(id >> 8) & 0xff];
 
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h
index 51194e0..d1a0e26 100644
--- a/engines/voyeur/files.h
+++ b/engines/voyeur/files.h
@@ -107,7 +107,7 @@ public:
 	virtual ~BoltFile();
 
 	BoltGroup *getBoltGroup(uint16 id);
-	void freeBoltGroup(uint16 id, bool freeEntries = true);
+	void freeBoltGroup(uint16 id);
 	void freeBoltMember(uint32 id);
 	byte *memberAddr(uint32 id);
 	byte *memberAddrOffset(uint32 id);






More information about the Scummvm-git-logs mailing list