summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/monzagp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/monzagp.c')
-rw-r--r--src/mame/drivers/monzagp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/monzagp.c b/src/mame/drivers/monzagp.c
index 849ea3f75be..c922c15866f 100644
--- a/src/mame/drivers/monzagp.c
+++ b/src/mame/drivers/monzagp.c
@@ -37,7 +37,8 @@ public:
monzagp_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
int m_coordx;
int m_coordy;
@@ -56,6 +57,7 @@ public:
UINT32 screen_update_monzagp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};