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

This commit is contained in:
Strangerke 2014-03-03 19:05:55 +01:00
parent 3a017ac8a8
commit e6b56b0b85
2 changed files with 2 additions and 2 deletions

View File

@ -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];

View File

@ -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);