diff options
author | 2019-12-14 15:38:26 +0100 | |
---|---|---|
committer | 2019-12-14 15:38:26 +0100 | |
commit | 7448f3f64bc235f08607183bf5d70fb53d11dc5c (patch) | |
tree | d8d6758a33e9671a26f918fbd3073ad7ccd36769 | |
parent | f115aa8c665fe6b531cf344e0956ff23e7043def (diff) |
ym2151.cpp: initialize one variable more (nw)
-rw-r--r-- | src/devices/sound/ym2151.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/sound/ym2151.cpp b/src/devices/sound/ym2151.cpp index 459d87776ab..f6284aa0360 100644 --- a/src/devices/sound/ym2151.cpp +++ b/src/devices/sound/ym2151.cpp @@ -935,6 +935,8 @@ void ym2151_device::device_start() eg_timer_add = 1 << EG_SH; eg_timer_overflow = 3 * eg_timer_add; + irqlinestate = 0; + /* save all 32 operators */ for (int j=0; j<32; j++) { |