summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/changela.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/changela.h')
-rw-r--r--src/mame/includes/changela.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/changela.h b/src/mame/includes/changela.h
index 05883ebc4db..aecb34a6ee4 100644
--- a/src/mame/includes/changela.h
+++ b/src/mame/includes/changela.h
@@ -9,7 +9,9 @@ public:
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
m_mcu(*this, "mcu"),
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram;
@@ -99,4 +101,6 @@ public:
void draw_river( bitmap_ind16 &bitmap, int sy );
void draw_tree( bitmap_ind16 &bitmap, int sy, int tree_num );
required_device<cpu_device> m_maincpu;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};