ZVISION: Correct function documentation

This commit is contained in:
David Russo 2015-05-16 18:51:44 +01:00
parent 6bc2a633a2
commit 0c09973a70

View File

@ -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();
};