summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/runaway.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/runaway.h')
-rw-r--r--src/mame/includes/runaway.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/runaway.h b/src/mame/includes/runaway.h
index 5b8e85e8bbd..486775fac88 100644
--- a/src/mame/includes/runaway.h
+++ b/src/mame/includes/runaway.h
@@ -6,7 +6,9 @@ public:
m_video_ram(*this, "video_ram"),
m_sprite_ram(*this, "sprite_ram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
emu_timer *m_interrupt_timer;
required_shared_ptr<UINT8> m_video_ram;
@@ -31,4 +33,6 @@ public:
TIMER_CALLBACK_MEMBER(interrupt_callback);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};