don't show debug info on release build
parent
9b674ea333
commit
c2f9f4ad80
5
xormod.c
5
xormod.c
|
@ -35,7 +35,12 @@ int main() {
|
||||||
Uint64 last = SDL_GetTicks();
|
Uint64 last = SDL_GetTicks();
|
||||||
|
|
||||||
int running = 1;
|
int running = 1;
|
||||||
|
|
||||||
|
#ifdef NDEBUG
|
||||||
|
int debug = 0;
|
||||||
|
#else
|
||||||
int debug = 1;
|
int debug = 1;
|
||||||
|
#endif
|
||||||
|
|
||||||
while (running) {
|
while (running) {
|
||||||
Uint64 ticks = SDL_GetTicks();
|
Uint64 ticks = SDL_GetTicks();
|
||||||
|
|
Loading…
Reference in New Issue