diff options
author | talha <talha@talhaamir.xyz> | 2023-09-02 22:10:39 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2023-09-02 22:10:39 +0500 |
commit | b718dead6ffdef7df5836b7d9b112b4f38e82378 (patch) | |
tree | feb5cd34cfd21199799a5864d7b9ba11d03c8200 /code/amr_memory.h | |
parent | df0d5fcea9682c7890f3b0ae5e8caea2a3867199 (diff) |
- moving existing code into separate function calls to make it easier
Diffstat (limited to 'code/amr_memory.h')
-rw-r--r-- | code/amr_memory.h | 2 |
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); |