aboutsummaryrefslogtreecommitdiff
path: root/engines/director/score.cpp
diff options
context:
space:
mode:
authorDmitry Iskrich2016-06-29 15:29:58 +0300
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit7164b1531c63c825c7a2a5675bfabc1cf7887b5c (patch)
tree4155f49de869fd193192da627b8ca1792f767487 /engines/director/score.cpp
parent7013f6bb40d9be0b3620ab331be4d4d1b60ac477 (diff)
downloadscummvm-rg350-7164b1531c63c825c7a2a5675bfabc1cf7887b5c.tar.gz
scummvm-rg350-7164b1531c63c825c7a2a5675bfabc1cf7887b5c.tar.bz2
scummvm-rg350-7164b1531c63c825c7a2a5675bfabc1cf7887b5c.zip
DIRECTOR: Fix code style violation
Diffstat (limited to 'engines/director/score.cpp')
-rw-r--r--engines/director/score.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index 7b26a952e2..ff324c59c4 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -408,7 +408,7 @@ void Score::loadCastInfo(Common::SeekableSubReadStreamEndian &stream, uint16 id)
_castsInfo[id] = ci;
}
-void Score::goToLoop() {
+void Score::gotoloop() {
//This command has the playback head contonuously return to the first marker to to the left and then loop back.
//If no marker are to the left of the playback head, the playback head continues to the right.
Common::SortedArray<Label *>::iterator i;
@@ -421,7 +421,7 @@ void Score::goToLoop() {
}
}
-void Score::goToNext() {
+void Score::gotonext() {
Common::SortedArray<Label *>::iterator i;
for (i = _labels->begin(); i != _labels->end(); ++i) {
@@ -444,7 +444,7 @@ void Score::goToNext() {
_currentFrame = 0;
}
-void Score::goToPrevious() {
+void Score::gotoprevious() {
//One label
if (_labels->begin() == _labels->end()) {
_currentFrame = (*_labels->begin())->number;