aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-03-30 08:47:31 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-03-30 08:47:31 -0400
commit0b1bfa28f33410acc1c3b95df1c1b748ce55b447 (patch)
tree807e942cfb92cb631b02ec0079da63838dd6741f /include/common.hpp
parentc35571e37bdd6d2fe9b95e4265c150265585f3a9 (diff)
parenta9a9777190086bd2ce2aa54e20a1101509614463 (diff)
Inv and textures
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.