Fix LOGE macro (disable color on win), Fix map size "empty"

- Recently added color to LOGE output did not compile on windows.
   Removed color support on windows for now.

- Changed map size of map "empty" from 20x15 to 20x20 (square now)
This commit is contained in:
jonny-vb 2024-01-07 12:28:59 -08:00
parent 797805b5e4
commit 32a0b44f0d
2 changed files with 8 additions and 10 deletions

View File

@ -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 <windows.h>
#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

View File

@ -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,