diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-15 08:49:26 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-15 08:49:26 -0400 |
commit | 56fd6a9d86ac57580ec2b91cc98db31dda5f5770 (patch) | |
tree | 359c86e617b993a07465dfc020a26704753a5320 /include/common.hpp | |
parent | 8b0f74445b509d8e59ec89854f2e149ad1948d4e (diff) |
Fixed segfaults
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/include/common.hpp b/include/common.hpp index 65ac47b..5968272 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -48,6 +48,11 @@ typedef unsigned int uint; #define MSEC_PER_TICK (1000 / TICKS_PER_SEC) +/** + * This flag lets the compuler know that we are testing for segfault locations. + * If this flag is enabled, the function C(x) will print 'x' to terminal + */ + //#define SEGFAULT /** @@ -57,17 +62,17 @@ typedef unsigned int uint; #define SHADERS template<typename N> -N abso(N v){ - if(v < 0){ +N abso(N v) { + if (v < 0) { return v * -1; }else return v; } template<class A> -float averagef(A v){ +float averagef(A v) { float avg = 0; - for(auto &a : v){ + for(auto &a : v) { avg += a; } avg /= v.size(); @@ -112,16 +117,16 @@ struct col { float red; float green; float blue; - col operator-=(float a){ + col operator-=(float a) { red-=a; green-=a; blue-=a; return{red+a,green+a,blue+a}; } - col operator+=(float a){ + col operator+=(float a) { return{red+a,green+a,blue+a}; } - col operator=(float a){ + col operator=(float a) { return{red=a,green=a,blue=a}; } }; @@ -195,7 +200,7 @@ extern float VOLUME_SFX; #define DEBUG_printf(message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__) #ifdef SEGFAULT -#define C(x) std::cout << m << std::endl +#define C(x) std::cout << x << std::endl #else #define C(x) #endif @@ -268,7 +273,7 @@ const char *readFile(const char *path); int strCreateFunc(const char *equ); template<typename N, size_t s> -size_t arrAmt(N (&)[s]){return s;} +size_t arrAmt(N (&)[s]) {return s;} void UserError(std::string reason); |