Fix for overdriv assert - from Osso (nw)

This commit is contained in:
Scott Stone 2013-07-11 05:20:01 +00:00
parent 4ff02361b6
commit dfd1503b59
2 changed files with 1 additions and 3 deletions

View File

@ -2906,9 +2906,8 @@ const device_type K051316 = &device_creator<k051316_device>;
k051316_device::k051316_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, K051316, "Konami 051316", tag, owner, clock, "k051316", __FILE__),
m_ram(NULL),
m_ram(NULL)
//m_tmap,
m_bpp(0)
//m_ctrlram[16]
{
}

View File

@ -389,7 +389,6 @@ private:
// internal state
UINT8 *m_ram;
tilemap_t *m_tmap;
int m_bpp;
UINT8 m_ctrlram[16];
TILE_GET_INFO_MEMBER(get_tile_info0);