SPC: Reduced buffer to a more reasonable size

This commit is contained in:
Sour 2020-02-15 10:48:33 -05:00
parent 208e1cc12d
commit b82b087b4e

View file

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