summaryrefslogtreecommitdiff
path: root/code/amr_memory.h
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2023-09-02 22:10:39 +0500
committertalha <talha@talhaamir.xyz>2023-09-02 22:10:39 +0500
commitb718dead6ffdef7df5836b7d9b112b4f38e82378 (patch)
treefeb5cd34cfd21199799a5864d7b9ba11d03c8200 /code/amr_memory.h
parentdf0d5fcea9682c7890f3b0ae5e8caea2a3867199 (diff)
Adding basic font rendering functions:HEADmain
- moving existing code into separate function calls to make it easier
Diffstat (limited to 'code/amr_memory.h')
-rw-r--r--code/amr_memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/amr_memory.h b/code/amr_memory.h
index f7638b3..bc5c1ad 100644
--- a/code/amr_memory.h
+++ b/code/amr_memory.h
@@ -6,10 +6,10 @@
#endif
typedef struct amr_DebugArena {
- u8 *Buffer;
size_t Size;
size_t CurrOffset;
size_t PrevOffset;
+ u8 *Buffer;
} amr_DebugArena;
bool amr_IsPowerOfTwo(uintptr_t x);