summaryrefslogtreecommitdiff
path: root/src/common.hpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-19 22:21:17 +0100
committerPaweł Redman <pawel.redman@gmail.com>2017-12-19 22:21:17 +0100
commit9628c2c097b10f22aafd4890ab8e98375b5740da (patch)
treec3ae35b5e7cd3f5e525ad85a3dad551f84996cfb /src/common.hpp
parent949eb704c7954ae3646895e4a3d957d0d219142a (diff)
Replace clock_gettime with std::chrono.
Diffstat (limited to 'src/common.hpp')
-rw-r--r--src/common.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.hpp b/src/common.hpp
index f7435ca..656a370 100644
--- a/src/common.hpp
+++ b/src/common.hpp
@@ -27,7 +27,7 @@ along with Minitrem. If not, see <http://www.gnu.org/licenses/>.
#include <SFML/Graphics.hpp>
#include "math.hpp"
-#define count(A) (sizeof(A) / sizeof((A)[0]))
+#define COUNT(A) (sizeof(A) / sizeof((A)[0]))
extern bool debug_draw_cmodels;
extern bool debug_draw_paths;