mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
VOYEUR: Remove the second (useless) parameter of freeBoltGroup()
This commit is contained in:
parent
3a017ac8a8
commit
e6b56b0b85
@ -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];
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user