aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/clock.h')
-rw-r--r--engines/zvision/clock.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/engines/zvision/clock.h b/engines/zvision/clock.h
index 3939ba1612..3740e07881 100644
--- a/engines/zvision/clock.h
+++ b/engines/zvision/clock.h
@@ -53,22 +53,26 @@ public:
*
* @return Delta time since the last frame (in milliseconds)
*/
- uint32 getDeltaTime() const { return _deltaTime; }
+ uint32 getDeltaTime() const {
+ return _deltaTime;
+ }
/**
* Get the time from the program starting to the last update() call
*
* @return Time from program start to last update() call (in milliseconds)
*/
- uint32 getLastMeasuredTime() { return _lastTime; }
+ uint32 getLastMeasuredTime() {
+ return _lastTime;
+ }
/**
* Pause the clock. Any future delta times will take this pause into account.
- * Has no effect if the clock is already paused.
+ * Has no effect if the clock is already paused.
*/
void start();
/**
* Un-pause the clock.
- * Has no effect if the clock is already un-paused.
+ * Has no effect if the clock is already un-paused.
*/
void stop();
};