aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/core
diff options
context:
space:
mode:
authorDavid Russo2015-05-16 18:51:44 +0100
committerDavid Russo2015-07-07 15:24:23 +0100
commit0c09973a7058a38d09a1fb526124e905a72dec3f (patch)
tree27478a92d9056120a04fbd9c7e2fa8c380405aaa /engines/zvision/core
parent6bc2a633a2921d589f8226160d19243a9ee99699 (diff)
downloadscummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.tar.gz
scummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.tar.bz2
scummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.zip
ZVISION: Correct function documentation
Diffstat (limited to 'engines/zvision/core')
-rw-r--r--engines/zvision/core/clock.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/zvision/core/clock.h b/engines/zvision/core/clock.h
index cbf52be560..ae8c968111 100644
--- a/engines/zvision/core/clock.h
+++ b/engines/zvision/core/clock.h
@@ -67,14 +67,14 @@ public:
}
/**
- * Pause the clock. Any future delta times will take this pause into account.
- * Has no effect if the clock is already paused.
- */
+ * Un-pause the clock.
+ * Has no effect if the clock is already un-paused.
+ */
void start();
/**
- * Un-pause the clock.
- * Has no effect if the clock is already un-paused.
+ * Pause the clock. Any future delta times will take this pause into account.
+ * Has no effect if the clock is already paused.
*/
void stop();
};