summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shangha3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/shangha3.h')
-rw-r--r--src/mame/includes/shangha3.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/shangha3.h b/src/mame/includes/shangha3.h
index 2e821273a89..699e84b021a 100644
--- a/src/mame/includes/shangha3.h
+++ b/src/mame/includes/shangha3.h
@@ -9,7 +9,9 @@ public:
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_oki(*this, "oki"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
int m_prot_count;
required_shared_ptr<UINT16> m_ram;
@@ -39,4 +41,6 @@ public:
optional_device<cpu_device> m_audiocpu;
required_device<okim6295_device> m_oki;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};