aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/anim.cpp
diff options
context:
space:
mode:
authorStrangerke2015-12-20 02:42:52 +0100
committerWillem Jan Palenstijn2015-12-23 21:35:30 +0100
commit28c74aed05e6b7ea127bb521ea8c456075608b07 (patch)
treef3dc080d71fc5ebf5f731b101daaa03049b58a77 /engines/lab/anim.cpp
parentee4e67a731058907758b4fd34ffc1745c19e51c4 (diff)
downloadscummvm-rg350-28c74aed05e6b7ea127bb521ea8c456075608b07.tar.gz
scummvm-rg350-28c74aed05e6b7ea127bb521ea8c456075608b07.tar.bz2
scummvm-rg350-28c74aed05e6b7ea127bb521ea8c456075608b07.zip
LAB: More work on the comments
Diffstat (limited to 'engines/lab/anim.cpp')
-rw-r--r--engines/lab/anim.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/lab/anim.cpp b/engines/lab/anim.cpp
index 4b060965e2..49dbe285a6 100644
--- a/engines/lab/anim.cpp
+++ b/engines/lab/anim.cpp
@@ -240,17 +240,11 @@ void Anim::diffNextFrame(bool onlyDiffData) {
}
}
-/**
- * Stops an animation from running.
- */
void Anim::stopDiff() {
if (_isPlaying && _isAnim)
_vm->_graphics->blackScreen();
}
-/**
- * Stops an animation from running.
- */
void Anim::stopDiffEnd() {
if (!_isPlaying)
return;
@@ -262,9 +256,6 @@ void Anim::stopDiffEnd() {
}
}
-/**
- * Reads in a DIFF file.
- */
void Anim::readDiff(Common::File *diffFile, bool playOnce, bool onlyDiffData) {
_playOnce = playOnce;
_delayMicros = 0;