summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gpworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gpworld.c')
-rw-r--r--src/mame/drivers/gpworld.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/gpworld.c b/src/mame/drivers/gpworld.c
index 8a93e3c59a1..5a1eca1fef6 100644
--- a/src/mame/drivers/gpworld.c
+++ b/src/mame/drivers/gpworld.c
@@ -59,7 +59,8 @@ public:
m_palette_ram(*this, "palette_ram"),
m_tile_ram(*this, "tile_ram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
UINT8 m_nmi_enable;
UINT8 m_start_lamp;
@@ -85,6 +86,7 @@ public:
void gpworld_draw_sprites(bitmap_rgb32 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
sha1'>f3ce55e9243
3abcaee63ff
526d56d3597




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31