summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/funworld.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/funworld.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/funworld.h')
-rw-r--r--src/mame/includes/funworld.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/funworld.h b/src/mame/includes/funworld.h
index ac5032b022d..f37d198b328 100644
--- a/src/mame/includes/funworld.h
+++ b/src/mame/includes/funworld.h
@@ -6,7 +6,8 @@ public:
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_colorram;
@@ -42,4 +43,5 @@ public:
UINT32 screen_update_funworld(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;
};
=13&d=retro' /> Aaron Giles2021-02-271-1/+1 * Implement views, which are essentially bankdevs integrated into the Olivier Galibert2020-11-221-18/+6 * simpsons: get rid of black borders/improve screen aspect ratio hap2020-07-091-1/+1 * simpsons: correct refresh rate hap2020-07-091-3/+2 * taitogn: sianniv doesn't have zsg2 sound hap2020-07-051-1/+1 * drivers starting with s: removed read* and write* macros (nw) Ivan Vangelista2020-06-151-2/+2 * simpsons, k053260: Fix the pan, fix the interrupts, fix the general volume [O... Olivier Galibert2020-05-011-17/+14