mirror of
https://github.com/holub/mame
synced 2025-04-27 18:53:05 +03:00
fixed uninitialized variables in src/emu/sound/pokey.c (nw)
This commit is contained in:
parent
1569b9651a
commit
5b43d36bf6
@ -272,12 +272,14 @@ void pokey_device::device_start()
|
|||||||
m_p5 = 0;
|
m_p5 = 0;
|
||||||
m_p9 = 0;
|
m_p9 = 0;
|
||||||
m_p17 = 0;
|
m_p17 = 0;
|
||||||
|
m_ALLPOT = 0x00;
|
||||||
|
|
||||||
m_pot_counter = 0;
|
m_pot_counter = 0;
|
||||||
m_kbd_cnt = 0;
|
m_kbd_cnt = 0;
|
||||||
m_out_filter = 0;
|
m_out_filter = 0;
|
||||||
m_output =0;
|
m_output = 0;
|
||||||
|
m_kbd_state = 0;
|
||||||
|
|
||||||
/* reset more internal state */
|
/* reset more internal state */
|
||||||
for (i=0; i<3; i++)
|
for (i=0; i<3; i++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user