mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
fixed array access (nw)
This commit is contained in:
parent
1f68882492
commit
d56ed8f269
@ -391,7 +391,7 @@ WRITE8_MEMBER( dave_device::io_w )
|
||||
case 0xa5:
|
||||
{
|
||||
int count = 0;
|
||||
int channel_index = offset>>1;
|
||||
int channel_index = (offset>>1)&3;
|
||||
|
||||
/* Fout = 125,000 / (n+1) Hz */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user