summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/model1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/model1.h')
-rw-r--r--src/mame/includes/model1.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/model1.h b/src/mame/includes/model1.h
index bbe9715d6a7..65ed738437e 100644
--- a/src/mame/includes/model1.h
+++ b/src/mame/includes/model1.h
@@ -21,7 +21,8 @@ public:
m_display_list0(*this, "display_list0"),
m_display_list1(*this, "display_list1"),
m_color_xlat(*this, "color_xlat"),
- m_paletteram16(*this, "palette") { }
+ m_paletteram16(*this, "palette"),
+ m_palette(*this, "palette") { }
required_device<v60_device> m_maincpu; // V60
required_device<segam1audio_device> m_m1audio; // Model 1 standard sound board
@@ -97,6 +98,7 @@ public:
int m_render_done;
UINT16 *m_tgp_ram;
optional_shared_ptr<UINT16> m_paletteram16;
+ required_device<palette_device> m_palette;
UINT32 *m_poly_rom;
UINT32 *m_poly_ram;
UINT16 m_lamp_state;