diff options
author | David Russo | 2015-05-16 18:51:44 +0100 |
---|---|---|
committer | David Russo | 2015-07-07 15:24:23 +0100 |
commit | 0c09973a7058a38d09a1fb526124e905a72dec3f (patch) | |
tree | 27478a92d9056120a04fbd9c7e2fa8c380405aaa /engines | |
parent | 6bc2a633a2921d589f8226160d19243a9ee99699 (diff) | |
download | scummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.tar.gz scummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.tar.bz2 scummvm-rg350-0c09973a7058a38d09a1fb526124e905a72dec3f.zip |
ZVISION: Correct function documentation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/core/clock.h | 10 |
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(); }; |