We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee3be57 commit 91addebCopy full SHA for 91addeb
tools/rexm/rexm.c
@@ -50,12 +50,12 @@
50
51
#include "raylib.h"
52
53
-#include <stdlib.h>
+#include <stdlib.h> // Required for: NULL, calloc(), free()
54
#include <stdio.h> // Required for: rename(), remove()
55
#include <string.h> // Required for: strcmp(), strcpy()
56
57
#define SUPPORT_LOG_INFO
58
-#if defined(SUPPORT_LOG_INFO) && defined(_DEBUG)
+#if defined(SUPPORT_LOG_INFO) //&& defined(_DEBUG)
59
#define LOG(...) printf("REXM: "__VA_ARGS__)
60
#else
61
#define LOG(...)
0 commit comments