mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-03-04 01:01:28 +01:00
enable debug mode by default
This commit is contained in:
parent
888db62f02
commit
516aa77853
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -9,7 +9,7 @@ float FPS = 60;
|
||||||
int DISPLAY_WIDTH = 800;
|
int DISPLAY_WIDTH = 800;
|
||||||
int DISPLAY_HEIGHT = 500;
|
int DISPLAY_HEIGHT = 500;
|
||||||
bool FULLSCREEN = true;
|
bool FULLSCREEN = true;
|
||||||
bool DEBUG = false;
|
bool DEBUG = true;
|
||||||
|
|
||||||
void PrintConsole(struct Game *game, char* text) {
|
void PrintConsole(struct Game *game, char* text) {
|
||||||
if (DEBUG) printf("%s\n", text);
|
if (DEBUG) printf("%s\n", text);
|
||||||
|
|
Loading…
Add table
Reference in a new issue