summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-05-07 10:34:23 +0200
committer Olivier Galibert <galibert@pobox.com>2022-05-17 10:12:12 +0200
commitc5b07e0fe76e452a1e0b14b09c8b70a9620a7412 (patch)
treecd0f5c439456fc2b3bdaf76375eb1577c3038a2e /src/mame/includes
parent19dfefb91b2b37d1436652f39564184eecf80224 (diff)
slap fight: Correct placement
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/slapfght.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/slapfght.h b/src/mame/includes/slapfght.h
index 3ecbf90dff1..015faa57fdc 100644
--- a/src/mame/includes/slapfght.h
+++ b/src/mame/includes/slapfght.h
@@ -31,6 +31,7 @@ public:
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
m_spriteram(*this, "spriteram"),
+ m_spriteram_buffer(*this, "spriteram"),
m_fixvideoram(*this, "fixvideoram"),
m_fixcolorram(*this, "fixcolorram")
{ }
@@ -64,6 +65,7 @@ private:
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_colorram;
required_shared_ptr<uint8_t> m_spriteram;
+ required_device<buffered_spriteram8_device> m_spriteram_buffer;
optional_shared_ptr<uint8_t> m_fixvideoram;
optional_shared_ptr<uint8_t> m_fixcolorram;