summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos2.h
diff options
context:
space:
mode:
author David Haywood <28625134+DavidHaywood@users.noreply.github.com>2021-07-16 00:40:04 +0100
committer GitHub <noreply@github.com>2021-07-15 19:40:04 -0400
commit30e547bc5ae1093d76c80ccca8e5f40ffc6cc004 (patch)
treee9afe4bd8b3491a32a0879b75c7238bd218fc8dc /src/mame/includes/namcos2.h
parent5df092b60a99e5ec1f0919f5dc6d78e9fd15bab7 (diff)
some Namco posirq kludges [David Haywood] + Final Lap R sprite position fix [Ryan Holtz] (#8305)
Diffstat (limited to 'src/mame/includes/namcos2.h')
-rw-r--r--src/mame/includes/namcos2.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/namcos2.h b/src/mame/includes/namcos2.h
index e0579a37fe2..82077a7105c 100644
--- a/src/mame/includes/namcos2.h
+++ b/src/mame/includes/namcos2.h
@@ -39,6 +39,7 @@ public:
namcos2_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_gametype(0),
+ m_update_to_line_before_posirq(false),
m_maincpu(*this, "maincpu"),
m_slave(*this, "slave"),
m_audiocpu(*this, "audiocpu"),
@@ -174,6 +175,8 @@ enum
};
int m_gametype;
+ bool m_update_to_line_before_posirq;
+
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_slave;
required_device<cpu_device> m_audiocpu;