diff options
Diffstat (limited to 'src/gametime.cpp')
-rw-r--r-- | src/gametime.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gametime.cpp b/src/gametime.cpp index a5272e5..6f6ac0e 100644 --- a/src/gametime.cpp +++ b/src/gametime.cpp @@ -5,9 +5,18 @@ static unsigned int tickCount = 0; static unsigned int deltaTime = 1; +static bool paused = false; namespace game { namespace time { + void togglePause(void) { + paused ^= true; + } + + void togglePause(bool state) { + paused = state; + } + void setTickCount(unsigned int t) { tickCount = t; } @@ -17,7 +26,7 @@ namespace game { } unsigned int getDeltaTime(void) { - return (deltaTime > 0) ? deltaTime : 1; + return paused ? 0 : ((deltaTime > 0) ? deltaTime : 1); } void tick(void) { |