From b82b087b4e78d1f57771fb5040d5a24a4712666a Mon Sep 17 00:00:00 2001 From: Sour Date: Sat, 15 Feb 2020 10:48:33 -0500 Subject: [PATCH] SPC: Reduced buffer to a more reasonable size --- Core/Spc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Spc.h b/Core/Spc.h index 6e01c94..2d5096a 100644 --- a/Core/Spc.h +++ b/Core/Spc.h @@ -24,7 +24,7 @@ public: static constexpr int SpcRomSize = 0x40; private: - static constexpr int SampleBufferSize = 0x100000; + static constexpr int SampleBufferSize = 0x20000; static constexpr uint16_t ResetVector = 0xFFFE; Console* _console;