From f4fb62742817bc2fde323145f2c5fc800a334bd6 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 14 May 2021 16:43:26 +1000 Subject: [PATCH] System: Increase maximum save state size (for 8MB RAM) --- src/core/system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/system.h b/src/core/system.h index 460dd5f8d..1dfd11036 100644 --- a/src/core/system.h +++ b/src/core/system.h @@ -38,8 +38,8 @@ namespace System { enum : u32 { - // 5 megabytes is sufficient for now, at the moment they're around 4.2MB. - MAX_SAVE_STATE_SIZE = 5 * 1024 * 1024 + // 5 megabytes is sufficient for now, at the moment they're around 4.3MB, or 10.3MB with 8MB RAM enabled. + MAX_SAVE_STATE_SIZE = 11 * 1024 * 1024 }; enum : TickCount