summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tnzs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tnzs.h')
-rw-r--r--src/mame/includes/tnzs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/tnzs.h b/src/mame/includes/tnzs.h
index 884148392ca..fb4692a318a 100644
--- a/src/mame/includes/tnzs.h
+++ b/src/mame/includes/tnzs.h
@@ -30,7 +30,8 @@ public:
m_maincpu(*this, "maincpu"),
m_seta001(*this, "spritegen"),
m_dac(*this, "dac"),
- m_samples(*this, "samples") { }
+ m_samples(*this, "samples"),
+ m_palette(*this, "palette") { }
/* memory pointers */
// UINT8 * m_paletteram; // currently this uses generic palette handling
@@ -119,4 +120,5 @@ public:
optional_device<seta001_device> m_seta001;
optional_device<dac_device> m_dac;
optional_device<samples_device> m_samples;
+ required_device<palette_device> m_palette;
};