diff options
Diffstat (limited to 'src/typedef.h')
-rw-r--r-- | src/typedef.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/typedef.h b/src/typedef.h index 2e7c672..483c250 100644 --- a/src/typedef.h +++ b/src/typedef.h @@ -1,12 +1,14 @@ #ifndef TYPEDEF_H #define TYPEDEF_H +// useful definitions + #define TILES_CAP 63 #define TILEMAP_CAP 4096 #include <stdint.h> #include <stddef.h> typedef unsigned char small_t; -typedef size_t big_t; +typedef uint64_t big_t; #endif |