diff --git a/include/common.h b/include/common.h index f6b23e1..d15f2b0 100644 --- a/include/common.h +++ b/include/common.h @@ -25,20 +25,18 @@ #endif //conditional logging when ERROR_OUTPUT_ENABLED is defined in config.h -//also prints in text in red color +//also prints in text in red color (windows not supported) //example: LOGE("game: %d", count) #ifdef ERROR_OUTPUT_ENABLED -#ifdef _WIN32 - #include - #define RED_TEXT SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_RED) - #define RESET_TEXT SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE) -#else + #ifdef _WIN32 //print error output in default color (currently no color support for windows) + #define LOGE(format, ...) printf("[E] " format, ##__VA_ARGS__) + #else //print error output in red color #define RED_TEXT "\033[1;31m" #define RESET_TEXT "\033[0m" -#endif -#define LOGE(format, ...) printf("[E] " RED_TEXT format RESET_TEXT, ##__VA_ARGS__) + #define LOGE(format, ...) printf(RED_TEXT "[E] " format RESET_TEXT, ##__VA_ARGS__) + #endif #else -#define LOGE(format, ...) do {} while (0) + #define LOGE(format, ...) do {} while (1) #endif diff --git a/src/map.c b/src/map.c index 07c0733..4eb5d8e 100644 --- a/src/map.c +++ b/src/map.c @@ -224,7 +224,7 @@ static const map_t map_default = { static const map_t map_empty = { .width = 20, - .height = 15, + .height = 20, .name = "empty", .collisions = {}, .collisionCount = 0,