summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fromance.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fromance.h')
-rw-r--r--src/mame/includes/fromance.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/fromance.h b/src/mame/includes/fromance.h
index 1bf7d98da84..13fef6cd778 100644
--- a/src/mame/includes/fromance.h
+++ b/src/mame/includes/fromance.h
@@ -20,7 +20,9 @@ public:
m_subcpu(*this, "sub"),
m_maincpu(*this, "maincpu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers (used by pipedrm) */
optional_shared_ptr<UINT8> m_videoram;
@@ -100,4 +102,6 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<msm5205_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};