aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/common.hpp')
-rw-r--r--include/common.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp
index d69fc91..5159c88 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -40,7 +40,6 @@ typedef unsigned int uint;
*/
#define SHADERS
-#define C(x) std::cout << x << std::endl
template<typename N>
N abso(N v){
@@ -118,7 +117,7 @@ typedef col Color;
* Define the game's name (displayed in the window title).
*/
-#define GAME_NAME "Independent Study v.0.6 alpha - NOW WITH more c++"
+#define GAME_NAME "Independent Study v0.7 alpha - NOW WITH lights and snow and stuff"
/**
* The desired width of the game window.
@@ -177,6 +176,7 @@ extern float VOLUME_SFX;
*/
#define DEBUG_printf( message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__ )
+#define C(x) std::cout << x << std::endl;
/**
* Defines pi for calculations that need it.