diff options
author | 2019-08-21 15:03:13 +0200 | |
---|---|---|
committer | 2019-08-21 14:49:21 +0200 | |
commit | 1d9bf6f861761531b8c25ace963a641f71161ad2 (patch) | |
tree | 32b67c8ec68400f72253e2b2be97ce5c0811ec4d | |
parent | 0617790932bf8d64fcc7c3a6fcdf0ca999523a8b (diff) |
Oops (nw)
-rw-r--r-- | src/mame/drivers/mindset.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mame/drivers/mindset.cpp b/src/mame/drivers/mindset.cpp index 584f945c7c1..d8fafdf6f8f 100644 --- a/src/mame/drivers/mindset.cpp +++ b/src/mame/drivers/mindset.cpp @@ -591,8 +591,6 @@ void mindset_state::dispreg_w(u16 data) } } -u16 vram2[0x8000]; - u32 mindset_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) { // Temporary gross hack @@ -604,13 +602,6 @@ u32 mindset_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, co int pixels_per_byte_order = (m_dispctrl & 0x0600) >> 9; bool large_pixels = m_dispctrl & 0x0100; - if (machine().input().code_pressed(KEYCODE_O)) { - for(int i=0; i<0x8000; i++) - vram2[i] = m_maincpu->space(AS_PROGRAM).read_word(0x26470+2*i); - bank = vram2; - } - - bitmap.fill(m_palette[m_borderidx]); int dx = ((m_screenpos >> 8) & 15) * (751 - 640) / 15; |