summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gamate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gamate.h')
-rw-r--r--src/mame/video/gamate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/gamate.h b/src/mame/video/gamate.h
index a4e2e3bc0fe..4482c90bcbc 100644
--- a/src/mame/video/gamate.h
+++ b/src/mame/video/gamate.h
@@ -28,18 +28,18 @@ public:
void regs_map(address_map &map);
void vram_map(address_map &map);
- DECLARE_PALETTE_INIT(gamate);
-
protected:
virtual void device_add_mconfig(machine_config &config) override;
virtual void device_start() override;
virtual void device_reset() override;
virtual space_config_vector memory_space_config() const override;
+
address_space *m_vramspace;
private:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void gamate_palette(palette_device &palette) const;
const address_space_config m_vram_space_config;
required_shared_ptr<uint8_t> m_vram;