diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-13 08:47:41 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-13 08:47:41 -0400 |
commit | fa4b6e00fd204998f6011420bdad60477b7a2f12 (patch) | |
tree | 4fd37e92f375ddb49e156b07811b8a2fe1ad6c0d /include/common.hpp | |
parent | 03130c5bcec3c885a1be005c24e192dfb57f3fe5 (diff) |
parentheses
Diffstat (limited to 'include/common.hpp')
-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 a62d75a..65ac47b 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -46,7 +46,7 @@ typedef unsigned int uint; * Defines how many milliseconds each game tick will take. */ -#define MSEC_PER_TICK ( 1000 / TICKS_PER_SEC ) +#define MSEC_PER_TICK (1000 / TICKS_PER_SEC) //#define SEGFAULT @@ -192,7 +192,7 @@ extern float VOLUME_SFX; * DEBUG must be defined for this macro to function. */ -#define DEBUG_printf( message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__ ) +#define DEBUG_printf(message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__) #ifdef SEGFAULT #define C(x) std::cout << m << std::endl |