fixed uninitialized variables in src/emu/sound/pokey.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-15 17:40:16 +00:00
parent 1569b9651a
commit 5b43d36bf6

View File

@ -272,12 +272,14 @@ void pokey_device::device_start()
m_p5 = 0;
m_p9 = 0;
m_p17 = 0;
m_ALLPOT = 0x00;
m_pot_counter = 0;
m_kbd_cnt = 0;
m_out_filter = 0;
m_output =0;
m_output = 0;
m_kbd_state = 0;
/* reset more internal state */
for (i=0; i<3; i++)
{