aboutsummaryrefslogtreecommitdiff
path: root/engines/director/score.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2017-02-11 20:18:17 +0100
committerEugene Sandulenko2017-02-11 23:23:56 +0100
commiteafa56daf0e159592a9476b803c12ec17da17eb1 (patch)
tree40248220546fc5e2881509ba5631b4c71cb0a17e /engines/director/score.cpp
parent8b043bc7316b27c1d44d9e68111335346134cbeb (diff)
downloadscummvm-rg350-eafa56daf0e159592a9476b803c12ec17da17eb1.tar.gz
scummvm-rg350-eafa56daf0e159592a9476b803c12ec17da17eb1.tar.bz2
scummvm-rg350-eafa56daf0e159592a9476b803c12ec17da17eb1.zip
JANITORIAL: Formatting fixes
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 fbb89e41c6..9cc108d739 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -420,7 +420,7 @@ void Score::loadCastData(Common::SeekableSubReadStreamEndian &stream, uint16 id,
ci->type = castStrings[4];
if (!ci->script.empty()) {
- //the script type here could be wrong!
+ // the script type here could be wrong!
if (ConfMan.getBool("dump_scripts"))
dumpScript(ci->script.c_str(), kCastScript, id);
@@ -649,12 +649,12 @@ int Score::getCurrentLabelNumber() {
}
void Score::gotoNext() {
- //we can just try to use the current frame and get the next label
+ // we can just try to use the current frame and get the next label
_currentFrame = getNextLabelNumber(_currentFrame);
}
void Score::gotoPrevious() {
- //we actually need the frame of the label prior to the most recent label.
+ // we actually need the frame of the label prior to the most recent label.
_currentFrame = getPreviousLabelNumber(getCurrentLabelNumber());
}