mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
k051649.c: fixed bogus for loop in device reset [Fabio Priuli]
This commit is contained in:
parent
6749510706
commit
53a1f443d2
@ -158,7 +158,7 @@ static DEVICE_RESET( k051649 )
|
||||
int i;
|
||||
|
||||
/* reset all the voices */
|
||||
for (i=0; i>5; i++) {
|
||||
for (i = 0; i < 5; i++) {
|
||||
voice[i].frequency = 0;
|
||||
voice[i].volume = 0;
|
||||
voice[i].counter = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user