summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/calomega.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-03-05 13:29:22 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-03-05 13:29:22 +0000
commitd2fd2856a7261992067f708299c3e7a37b9425f8 (patch)
treed656e2ab882173398c41b4bfb7b3f49c8e56130d /src/mame/includes/calomega.h
parentcc299c4066918ffe0bf29940bbf0672f38b6c262 (diff)
Moved optional_device<screen_device> m_screen and optional_device<palette_device> m_palette out of driver.* (nw)
Diffstat (limited to 'src/mame/includes/calomega.h')
-rw-r--r--src/mame/includes/calomega.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/calomega.h b/src/mame/includes/calomega.h
index 7f838d545ba..d6e56e5ec47 100644
--- a/src/mame/includes/calomega.h
+++ b/src/mame/includes/calomega.h
@@ -11,7 +11,8 @@ public:
m_aciabaud(*this, "aciabaud"),
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette")
{
}
@@ -56,6 +57,7 @@ private:
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_colorram;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
UINT8 m_tx_line;
int m_s903_mux_data;
int m_s905_mux_data;