summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gba_memory.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gba_memory.h b/gba_memory.h
index 4405547..cdbf16b 100644
--- a/gba_memory.h
+++ b/gba_memory.h
@@ -219,7 +219,8 @@ static inline void state_mem_write(const void* src, size_t size)
state_mem_write_ptr += size;
}
-#define GBA_STATE_MEM_SIZE 429640
+/* this is an upper limit, ToDo : calculate the exact state size */
+#define GBA_STATE_MEM_SIZE (512*1024)
#define state_mem_write_array(array) state_mem_write(array, sizeof(array))
#define state_mem_write_variable(variable) state_mem_write(&variable, sizeof(variable))