From b718dead6ffdef7df5836b7d9b112b4f38e82378 Mon Sep 17 00:00:00 2001
From: talha <talha@talhaamir.xyz>
Date: Sat, 2 Sep 2023 22:10:39 +0500
Subject: Adding basic font rendering functions:

- moving existing code into separate function calls to make it easier
---
 code/amr_memory.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'code/amr_memory.h')

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);
-- 
cgit v1.2.3