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 | |
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')
-rw-r--r-- | engines/zvision/core/clock.h | 10 | ||||
-rw-r--r-- | engines/zvision/core/console.cpp | 2 |
2 files changed, 6 insertions, 6 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(); }; diff --git a/engines/zvision/core/console.cpp b/engines/zvision/core/console.cpp index f5cacb582c..336541d82a 100644 --- a/engines/zvision/core/console.cpp +++ b/engines/zvision/core/console.cpp @@ -275,7 +275,7 @@ bool Console::cmdDumpFiles(int argc, const char **argv) { bool Console::cmdDumpImage(int argc, const char **argv) { if (argc != 2) { - debugPrintf("Use %s <TGA/TGZ name> to dump a ZVision TGA/TGZ image into a regular BMP image\n", argv[0]); + debugPrintf("Use %s <TGA/TGZ name> to dump a Z-Vision TGA/TGZ image into a regular BMP image\n", argv[0]); return true; } |