diff options
author | 2010-02-17 06:55:38 +0000 | |
---|---|---|
committer | 2010-02-17 06:55:38 +0000 | |
commit | 53a1f443d2e9c99e8532c95e90373d50d7bddb24 (patch) | |
tree | dd83d8ac223c055120331a78e2c7b62bef4e2405 /src/emu/sound/k051649.c | |
parent | 6749510706440918cd4932615f36250b31e68fc9 (diff) |
k051649.c: fixed bogus for loop in device reset [Fabio Priuli]
Diffstat (limited to 'src/emu/sound/k051649.c')
-rw-r--r-- | src/emu/sound/k051649.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/k051649.c b/src/emu/sound/k051649.c index 27f251196e1..d3240a66d73 100644 --- a/src/emu/sound/k051649.c +++ b/src/emu/sound/k051649.c @@ -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; |