summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/firefox.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-02-17 15:46:55 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-02-17 15:46:55 +0000
commita3e4a45f1a514eb3743c2aea07353ec6f950fb7a (patch)
tree3d306087e66de98834e6d5f963b12b0ae9d2c3d2 /src/mame/drivers/firefox.c
parent231d7c709abb698929c7871112c442b7c95015e6 (diff)
moved optional_device<gfxdecode_device> to specific drivers state classes (nw)
Diffstat (limited to 'src/mame/drivers/firefox.c')
-rw-r--r--src/mame/drivers/firefox.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/firefox.c b/src/mame/drivers/firefox.c
index 9991a0bc247..8a8510b1df9 100644
--- a/src/mame/drivers/firefox.c
+++ b/src/mame/drivers/firefox.c
@@ -46,7 +46,8 @@ public:
m_sprite_palette(*this, "sprite_palette"),
m_tile_palette(*this, "tile_palette"),
m_maincpu(*this, "maincpu"),
- m_audiocpu(*this, "audiocpu") { }
+ m_audiocpu(*this, "audiocpu"),
+ m_gfxdecode(*this, "gfxdecode") { }
required_device<phillips_22vp931_device> m_laserdisc;
required_shared_ptr<unsigned char> m_tileram;
@@ -106,6 +107,7 @@ public:
void firq_gen(phillips_22vp931_device &laserdisc, int state);
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
+ required_device<gfxdecode_device> m_gfxdecode;
};