diff options
author | Filippos Karapetis | 2015-07-08 00:28:02 +0300 |
---|---|---|
committer | Filippos Karapetis | 2015-07-08 00:28:02 +0300 |
commit | 94eae644ac1fa2286b3c27a09f8b1b1c95560661 (patch) | |
tree | bfccf65e9fff56727746dbbbe6d7250941691d91 /engines/zvision/core/clock.h | |
parent | 6bc2a633a2921d589f8226160d19243a9ee99699 (diff) | |
parent | e32385359839f573e7b55c2aba59390a7dd2c7de (diff) | |
download | scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.tar.gz scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.tar.bz2 scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.zip |
Merge pull request #601 from elQuotho/zvision-polish
Z-Vision polish
Diffstat (limited to 'engines/zvision/core/clock.h')
-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(); }; |