Copy text strings into memory arena for UI

This commit is contained in:
2023-12-22 16:46:20 +01:00
parent 331f40f4cb
commit b48372bfa5
3 changed files with 30 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ typedef double f64;
#define BZ_ASSERT(e) assert(e)
#define BZ_MAX(a, b) (((a) > (b)) ? (a) : (b))
#define BZ_MIN(a, b) BZ_MAX(b, a)
#define BZ_MIN(a, b) (((a) < (b)) ? (a) : (b))
#define BZ_ABS(a) ((a >= 0) ? (a) : (-(a)))
#define DEBUG_MODE