summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/amaticmg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/amaticmg.c')
-rw-r--r--src/mame/drivers/amaticmg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/amaticmg.c b/src/mame/drivers/amaticmg.c
index 3fb232bfc81..2e0643731b8 100644
--- a/src/mame/drivers/amaticmg.c
+++ b/src/mame/drivers/amaticmg.c
@@ -432,7 +432,8 @@ public:
m_attr(*this, "attr"),
m_vram(*this, "vram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_attr;
required_shared_ptr<UINT8> m_vram;
@@ -460,6 +461,7 @@ public:
void decrypt(int key1, int key2);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};