mirror of
https://github.com/holub/mame
synced 2025-05-23 22:20:01 +03:00
relax oki 6295 command validity check
This commit is contained in:
parent
922ea8052f
commit
c8944548df
@ -451,7 +451,7 @@ static void okim6295_data_w(int num, int data)
|
||||
|
||||
|
||||
/* the manual explicitly says that it's not possible to start multiple voices at the same time */
|
||||
if (temp != 1 && temp != 2 && temp != 4 && temp != 8)
|
||||
if (temp != 0 && temp != 1 && temp != 2 && temp != 4 && temp != 8)
|
||||
popmessage("OKI6295 start %x contact MAMEDEV", temp);
|
||||
|
||||
/* update the stream */
|
||||
|
Loading…
Reference in New Issue
Block a user