From bec429ed72049c8e2aba8842ac155c7cc77024d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 23 Feb 2023 20:21:41 +0100 Subject: [PATCH] MacOS buildfix for some reason --- Core/SaveState.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/SaveState.cpp b/Core/SaveState.cpp index 2715d897b0..3f51aebbc6 100644 --- a/Core/SaveState.cpp +++ b/Core/SaveState.cpp @@ -291,10 +291,10 @@ namespace SaveState } private: - static const int BLOCK_SIZE = 8192; - static const int REWIND_NUM_STATES = 20; + const int BLOCK_SIZE = 8192; + const int REWIND_NUM_STATES = 20; // TODO: Instead, based on size of compressed state? - static const int BASE_USAGE_INTERVAL = 15; + const int BASE_USAGE_INTERVAL = 15; typedef std::vector StateBuffer;