Call Dsp::GetSamples from SNES SetSamples

This commit is contained in:
scawful
2024-04-20 08:10:18 -04:00
parent e89d768b5a
commit 541e045c46
2 changed files with 2 additions and 18 deletions

View File

@@ -71,10 +71,6 @@ class SNES : public DirectMemoryAccess {
}
private:
void WriteToRegister(uint16_t address, uint8_t value) {
memory_.WriteByte(address, value);
}
// Components of the SNES
MemoryImpl memory_;
ClockImpl clock_;
@@ -99,6 +95,7 @@ class SNES : public DirectMemoryAccess {
// Other private member variables
bool running_ = false;
bool pal_timing_ = false;
int scanline;
int cpu_mode_ = 0;
};