summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pastelg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pastelg.h')
-rw-r--r--src/mame/includes/pastelg.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/pastelg.h b/src/mame/includes/pastelg.h
index b88857398ea..0bcc7bf012e 100644
--- a/src/mame/includes/pastelg.h
+++ b/src/mame/includes/pastelg.h
@@ -11,10 +11,12 @@ public:
pastelg_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) ,
m_maincpu(*this, "maincpu"),
- m_nb1413m3(*this, "nb1413m3") { }
+ m_nb1413m3(*this, "nb1413m3"),
+ m_screen(*this, "screen") { }
required_device<cpu_device> m_maincpu;
required_device<nb1413m3_device> m_nb1413m3;
+ required_device<screen_device> m_screen;
UINT8 m_mux_data;
int m_blitter_destx;