Fix S*RAM, Sim.setVolume

This commit is contained in:
2024-11-01 18:29:13 -05:00
parent 26a0357afa
commit 8b9152dde9
3 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -295,7 +295,7 @@ static void vsuWriteLRV(VB *sim, int index, uint8_t value) {
/* Write a value to S*RAM */
static void vsuWriteRAM(VB *sim, int index, uint8_t value) {
sim->vsu.channels[index].wave.wave = value & 15;
sim->vsu.channels[index].wave.wave = value & 7;
}
/* Write a value to S5SWP */