From 83af97c8b7bbe564a37e9d9c11a086d3b79f73d4 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Sun, 1 May 2016 17:52:44 -0400 Subject: Fixed some stuff --- include/common.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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 -- cgit v1.2.3