summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/portrait.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/portrait.h')
-rw-r--r--src/mame/includes/portrait.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/mame/includes/portrait.h b/src/mame/includes/portrait.h
index b4ccb34c0bd..e3db2e6a473 100644
--- a/src/mame/includes/portrait.h
+++ b/src/mame/includes/portrait.h
@@ -1,5 +1,10 @@
// license:BSD-3-Clause
// copyright-holders:Steve Ellenoff, Pierpaolo Prazzoli
+#ifndef MAME_INCLUDES_PORTRAIT_H
+#define MAME_INCLUDES_PORTRAIT_H
+
+#pragma once
+
#include "sound/tms5220.h"
#include "emupal.h"
@@ -22,6 +27,10 @@ public:
void portrait(machine_config &config);
+protected:
+ virtual void machine_start() override { m_lamps.resolve(); }
+ virtual void video_start() override;
+
private:
DECLARE_WRITE8_MEMBER(ctrl_w);
DECLARE_WRITE8_MEMBER(positive_scroll_w);
@@ -32,7 +41,7 @@ private:
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
- DECLARE_PALETTE_INIT(portrait);
+ void portrait_palette(palette_device &palette) const;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
inline void get_tile_info( tile_data &tileinfo, int tile_index, const uint8_t *source );
@@ -40,9 +49,6 @@ private:
void portrait_map(address_map &map);
void portrait_sound_map(address_map &map);
- virtual void machine_start() override { m_lamps.resolve(); }
- virtual void video_start() override;
-
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
@@ -57,3 +63,5 @@ private:
tilemap_t *m_foreground;
tilemap_t *m_background;
};
+
+#endif // MAME_INCLUDES_PORTRAIT_H