summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wiz.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/wiz.h')
-rw-r--r--src/mame/includes/wiz.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/wiz.h b/src/mame/includes/wiz.h
index 17b57b3ed19..cef5548a294 100644
--- a/src/mame/includes/wiz.h
+++ b/src/mame/includes/wiz.h
@@ -16,7 +16,8 @@ public:
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_discrete(*this, "discrete"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
int m_dsc0;
int m_dsc1;
@@ -66,4 +67,5 @@ public:
required_device<cpu_device> m_audiocpu;
optional_device<discrete_device> m_discrete;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};