VOYEUR: Remove parameters matching the default parameter in freeBoltGroup() calls

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

View File

@ -1270,7 +1270,7 @@ void ThreadResource::doRoom() {
vm.makeViewFinderP();
if (voy._boltGroupId2 != -1) {
vm._bVoy->freeBoltGroup(voy._boltGroupId2, 1);
vm._bVoy->freeBoltGroup(voy._boltGroupId2);
voy._boltGroupId2 = -1;
}
@ -1639,7 +1639,7 @@ void ThreadResource::freeTheApt() {
}
void ThreadResource::doAptAnim(int mode) {
_vm->_bVoy->freeBoltGroup(0x100, true);
_vm->_bVoy->freeBoltGroup(0x100);
// Figure out the resource to use
int id = 0;

View File

@ -1057,7 +1057,7 @@ void VoyeurEngine::initIFace() {
break;
}
if (playStamp1 != -1)
_bVoy->freeBoltGroup(playStamp1, true);
_bVoy->freeBoltGroup(playStamp1);
_bVoy->getBoltGroup(_playStampGroupId);
CMapResource *pal = _bVoy->boltEntry(_playStampGroupId + 2)._cMapResource;