summaryrefslogtreecommitdiff
path: root/code/amr_memory.h
diff options
context:
space:
mode:
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);