summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/galaga.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/galaga.h')
-rw-r--r--src/mame/includes/galaga.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/galaga.h b/src/mame/includes/galaga.h
index 90ade242044..30f1fa44d4e 100644
--- a/src/mame/includes/galaga.h
+++ b/src/mame/includes/galaga.h
@@ -16,7 +16,9 @@ public:
m_subcpu(*this, "sub"),
m_subcpu2(*this, "sub2"),
m_namco_sound(*this, "namco"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
optional_shared_ptr<UINT8> m_videoram;
@@ -29,6 +31,8 @@ public:
required_device<cpu_device> m_subcpu2;
required_device<namco_device> m_namco_sound;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
emu_timer *m_cpu3_interrupt_timer;
UINT8 m_custom_mod;