summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/retofinv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/retofinv.h')
-rw-r--r--src/mame/includes/retofinv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/retofinv.h b/src/mame/includes/retofinv.h
index 2c00ad5a7a0..66310d14fa2 100644
--- a/src/mame/includes/retofinv.h
+++ b/src/mame/includes/retofinv.h
@@ -10,7 +10,8 @@ public:
m_audiocpu(*this, "audiocpu"),
m_subcpu(*this, "sub"),
m_68705(*this, "68705"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
UINT8 m_cpu2_m6000;
required_shared_ptr<UINT8> m_fg_videoram;
@@ -75,4 +76,5 @@ public:
required_device<cpu_device> m_subcpu;
optional_device<cpu_device> m_68705;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};