summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sspeedr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sspeedr.h')
-rw-r--r--src/mame/includes/sspeedr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/sspeedr.h b/src/mame/includes/sspeedr.h
index 74a71466b7b..b14fc6ae698 100644
--- a/src/mame/includes/sspeedr.h
+++ b/src/mame/includes/sspeedr.h
@@ -4,7 +4,8 @@ public:
sspeedr_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
UINT8 m_led_TIME[2];
UINT8 m_led_SCORE[24];
@@ -44,4 +45,5 @@ public:
void draw_driver(bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};