From dfd1503b59f04ab82652f990e88a0a4d987d6030 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Thu, 11 Jul 2013 05:20:01 +0000 Subject: [PATCH] Fix for overdriv assert - from Osso (nw) --- src/mame/video/konicdev.c | 3 +-- src/mame/video/konicdev.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mame/video/konicdev.c b/src/mame/video/konicdev.c index b1d2675308e..22660f048e3 100644 --- a/src/mame/video/konicdev.c +++ b/src/mame/video/konicdev.c @@ -2906,9 +2906,8 @@ const device_type K051316 = &device_creator; 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] { } diff --git a/src/mame/video/konicdev.h b/src/mame/video/konicdev.h index 12faecff5fe..d15229881ee 100644 --- a/src/mame/video/konicdev.h +++ b/src/mame/video/konicdev.h @@ -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);