MacOS buildfix for some reason

This commit is contained in:
Henrik Rydgård 2023-02-23 20:21:41 +01:00
parent 24ef088448
commit bec429ed72

View file

@ -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<u8> StateBuffer;