MSVC compile fix

This commit is contained in:
Michaël Banaan Ananas 2014-10-13 19:32:32 +00:00
parent 1ecd587d3f
commit 61ec6c8bdd
2 changed files with 2 additions and 2 deletions

View File

@ -325,7 +325,7 @@ void k053260_device::KDSC_Voice::voice_reset()
m_volume = 0;
m_pan = 0;
m_loop = false;
m_kadpcm = false;
m_kadpcm = 0;
update_pan_volume();
}

View File

@ -100,7 +100,7 @@ private:
// bit packed registers
UINT8 m_pan;
bool m_loop;
bool m_kadpcm;
int m_kadpcm;
} m_voice[4];
friend class k053260_device::KDSC_Voice;