summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/kncljoe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/kncljoe.h')
-rw-r--r--src/mame/includes/kncljoe.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/kncljoe.h b/src/mame/includes/kncljoe.h
index e0a4f85cc01..acb32e3177a 100644
--- a/src/mame/includes/kncljoe.h
+++ b/src/mame/includes/kncljoe.h
@@ -14,7 +14,9 @@ public:
m_spriteram(*this, "spriteram"),
m_soundcpu(*this, "soundcpu"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -53,4 +55,6 @@ public:
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};