mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 16:33:50 +00:00
FULLPIPE: Implement couple destructors
This commit is contained in:
parent
81a2ee7d7c
commit
3091d0ae7f
@ -168,7 +168,9 @@ PictureObject::PictureObject() {
|
||||
}
|
||||
|
||||
PictureObject::~PictureObject() {
|
||||
warning("STUB: PictureObject::~PictureObject()");
|
||||
delete _picture;
|
||||
_pictureObject2List->clear();
|
||||
delete _pictureObject2List;
|
||||
}
|
||||
|
||||
PictureObject::PictureObject(PictureObject *src) : GameObject(src) {
|
||||
|
@ -56,7 +56,9 @@ bool canInteractAny(GameObject *obj1, GameObject *obj2, int invId) {
|
||||
}
|
||||
|
||||
InteractionController::~InteractionController() {
|
||||
warning("STUB: InteractionController::~InteractionController()");
|
||||
_interactions.clear();
|
||||
|
||||
removeMessageHandler(124, -1);
|
||||
}
|
||||
|
||||
bool InteractionController::load(MfcArchive &file) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user