aboutsummaryrefslogtreecommitdiff
path: root/src/typedef.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-11 21:45:03 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-11 21:45:03 +0300
commit30d1c9b30b5642efcba66bdc7956f4d7e321fc97 (patch)
treeae3cf3aeb4b01f1cb70ae84cc84d453e08da35a5 /src/typedef.h
parent57315da56fa3b036f8e3e2d32a5f90a11ae7c3de (diff)
more used friendly
Diffstat (limited to 'src/typedef.h')
-rw-r--r--src/typedef.h4
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