aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/sequences
diff options
context:
space:
mode:
authorwhiterandrek2018-03-28 11:06:42 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit43a5e46ce2156527ddec41be06fe09c26214ddbb (patch)
tree9d79d651330b46074db60d94fc276ca2593a7589 /engines/pink/objects/sequences
parent7168242832e8bd71e0e2a2617f6e8e6e56e6cd8e (diff)
downloadscummvm-rg350-43a5e46ce2156527ddec41be06fe09c26214ddbb.tar.gz
scummvm-rg350-43a5e46ce2156527ddec41be06fe09c26214ddbb.tar.bz2
scummvm-rg350-43a5e46ce2156527ddec41be06fe09c26214ddbb.zip
PINK: added placeholders for remaining buttons
Diffstat (limited to 'engines/pink/objects/sequences')
-rw-r--r--engines/pink/objects/sequences/sequencer.cpp2
-rw-r--r--engines/pink/objects/sequences/sequencer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/pink/objects/sequences/sequencer.cpp b/engines/pink/objects/sequences/sequencer.cpp
index 272065b284..6175140d46 100644
--- a/engines/pink/objects/sequences/sequencer.cpp
+++ b/engines/pink/objects/sequences/sequencer.cpp
@@ -81,7 +81,7 @@ void Sequencer::removeContext(SequenceContext *context) {
_context = 0;
}
-void Sequencer::skipSequence() {
+void Sequencer::skipSubSequence() {
if (_context && _context->getNextItemIndex() < _context->getSequence()->getItems().size())
_context->getSequence()->start(0);
}
diff --git a/engines/pink/objects/sequences/sequencer.h b/engines/pink/objects/sequences/sequencer.h
index 3ddf38762c..182862f651 100644
--- a/engines/pink/objects/sequences/sequencer.h
+++ b/engines/pink/objects/sequences/sequencer.h
@@ -49,7 +49,7 @@ public:
void update();
- void skipSequence();
+ void skipSubSequence();
public:
SequenceContext *_context;