summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/himesiki.cpp
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2016-03-14 19:42:00 +0000
committer David Haywood <mamehaze@users.noreply.github.com>2016-03-14 19:42:00 +0000
commitbbb9fd448f31e8b52fa12f8d6e66043f72c38729 (patch)
treeadc3bad31bce03f034646d0e506bb5d50c42b447 /src/mame/drivers/himesiki.cpp
parent41c8a9f6fa49b10c021196463adc654ecce25790 (diff)
add proper flipscreen support to himesiki.cpp, previous support was incorrectly hooked up to the scroll registers (androidp exposed this bug)
Diffstat (limited to 'src/mame/drivers/himesiki.cpp')
-rw-r--r--src/mame/drivers/himesiki.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/himesiki.cpp b/src/mame/drivers/himesiki.cpp
index 7765b04810c..5aab4ee4b4e 100644
--- a/src/mame/drivers/himesiki.cpp
+++ b/src/mame/drivers/himesiki.cpp
@@ -103,7 +103,10 @@ WRITE8_MEMBER(himesiki_state::himesiki_rombank_w)
{
membank("bank1")->set_entry(((data & 0x0c) >> 2));
- if (data & 0xf3)
+ m_flipscreen = (data & 0x10)>>4;
+ flip_screen_set(m_flipscreen);
+
+ if (data & 0xe3)
logerror("p06_w %02x\n", data);
}