enable debug mode by default

This commit is contained in:
Sebastian Krzyszkowiak 2012-02-19 18:12:52 +01:00
parent 888db62f02
commit 516aa77853

2
main.c
View file

@ -9,7 +9,7 @@ float FPS = 60;
int DISPLAY_WIDTH = 800;
int DISPLAY_HEIGHT = 500;
bool FULLSCREEN = true;
bool DEBUG = false;
bool DEBUG = true;
void PrintConsole(struct Game *game, char* text) {
if (DEBUG) printf("%s\n", text);