aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-06-30 10:33:50 +0300
committerAndrei Prykhodko2018-06-30 10:33:50 +0300
commitf75bb43f91f70b99227ef86e930962b6cfeecfc1 (patch)
tree7ac5bb0897c04014f2d661c58513958fa0d4dbf1 /engines
parent4d7bed967586e5d537c17b80a6aaf945a540d257 (diff)
downloadscummvm-rg350-f75bb43f91f70b99227ef86e930962b6cfeecfc1.tar.gz
scummvm-rg350-f75bb43f91f70b99227ef86e930962b6cfeecfc1.tar.bz2
scummvm-rg350-f75bb43f91f70b99227ef86e930962b6cfeecfc1.zip
PINK: fixed loading of GLOBAL pda page
Diffstat (limited to 'engines')
-rw-r--r--engines/pink/objects/actions/action_cel.cpp9
-rw-r--r--engines/pink/objects/actions/action_cel.h2
-rw-r--r--engines/pink/objects/pages/pda_page.cpp1
3 files changed, 2 insertions, 10 deletions
diff --git a/engines/pink/objects/actions/action_cel.cpp b/engines/pink/objects/actions/action_cel.cpp
index f31db4cbc9..600eb88e27 100644
--- a/engines/pink/objects/actions/action_cel.cpp
+++ b/engines/pink/objects/actions/action_cel.cpp
@@ -64,9 +64,7 @@ void ActionCEL::start() {
}
void ActionCEL::end() {
- if (!_decoder.isVideoLoaded())
- return;
- closeDecoder();
+ _actor->getPage()->getGame()->getDirector()->removeSprite(this);
}
void ActionCEL::pause(bool paused) {
@@ -88,11 +86,6 @@ void ActionCEL::loadDecoder() {
_decoder.loadStream(_actor->getPage()->getResourceStream(_fileName));
}
-void ActionCEL::closeDecoder() {
- _actor->getPage()->getGame()->getDirector()->removeSprite(this);
- _decoder.close();
-}
-
void ActionCEL::setFrame(uint frame) {
_decoder.rewind();
diff --git a/engines/pink/objects/actions/action_cel.h b/engines/pink/objects/actions/action_cel.h
index b1fa1b6235..07e16e7c03 100644
--- a/engines/pink/objects/actions/action_cel.h
+++ b/engines/pink/objects/actions/action_cel.h
@@ -59,8 +59,6 @@ public:
protected:
virtual void onStart() = 0;
- void closeDecoder();
-
void setFrame(uint frame);
void decodeNext();
diff --git a/engines/pink/objects/pages/pda_page.cpp b/engines/pink/objects/pages/pda_page.cpp
index d60b4d013a..e8d4ae94f5 100644
--- a/engines/pink/objects/pages/pda_page.cpp
+++ b/engines/pink/objects/pages/pda_page.cpp
@@ -39,6 +39,7 @@ Array<Actor *> PDAPage::takeActors() {
_actors[i]->preloadSprites();
}
Array<Actor *> actorsCopy = _actors;
+ _actors.clear();
return actorsCopy;
}