mirror of
https://github.com/libretro/scummvm.git
synced 2025-05-13 09:36:21 +00:00
VOYEUR: Remove parameters matching the default parameter in freeBoltGroup() calls
This commit is contained in:
parent
6db1e8ae46
commit
3a017ac8a8
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user