diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-01 17:52:44 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-01 17:52:44 -0400 |
commit | 83af97c8b7bbe564a37e9d9c11a086d3b79f73d4 (patch) | |
tree | bea1e8f329163448778bef65c5cae4cf2dfe24ac /include | |
parent | d9796041ca5876f88280ccb54560653e65e8da8a (diff) |
Fixed some stuff
Diffstat (limited to 'include')
-rw-r--r-- | include/common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp index 3712f62..e607c12 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -32,10 +32,10 @@ typedef unsigned int uint; #endif // the number of ticks that should occur in one second -constexpr const unsigned int TICKS_PER_SEC = 20; +const unsigned int TICKS_PER_SEC = 20; // the number of milliseconds inbetween each tick -constexpr const float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC; +const float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC; // segfault-debugging output //#define SEGFAULT |