aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authornathan <nathan@disroot.org>2025-07-09 08:49:54 +0000
committernathan <nathan@disroot.org>2025-07-09 08:49:54 +0000
commitd594afee3b6c55f24ecf05663b688ea488f073e6 (patch)
tree9fd0a9105e0e09520892074756a674496d0930f1 /src/utils.h
parent6bd4182fbed898ad68c6b425707bbd2c5ef1e115 (diff)
downloadFindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.tar.gz
FindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.tar.bz2
FindThings-d594afee3b6c55f24ecf05663b688ea488f073e6.zip
Finally some speed and no overlap!
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index 08a7420..f660b66 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -13,7 +13,7 @@
#ifndef UTIL_H
#define UTIL_H
-typedef struct Game Game;
+#define FT_DEBUG_MODE
#define FT_NAMEMAX 256
@@ -29,6 +29,8 @@ typedef struct Game Game;
#define ALLOCATION_ERROR TraceLog(LOG_ERROR, "Allocation error in %s:%d", \
__FILE__, __LINE__);
+typedef struct Game Game;
+
typedef enum FTError {
FTERROR = -1,
FTSUCCESS = 0