summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/metlfrzr.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-06-30 05:21:17 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 00:21:17 -0400
commit2b0eec6adfa7a4904646056ce4290835a68c5e5e (patch)
treed6a2357c20b6ff0ec2b14f858a6f70cfcefd997c /src/mame/drivers/metlfrzr.cpp
parentb77a01d309e86c526a15a6c8f186436c67736561 (diff)
more private: use (K,L,M) (#3714)
Diffstat (limited to 'src/mame/drivers/metlfrzr.cpp')
-rw-r--r--src/mame/drivers/metlfrzr.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/metlfrzr.cpp b/src/mame/drivers/metlfrzr.cpp
index aaf72b1d897..8b6da9c5e78 100644
--- a/src/mame/drivers/metlfrzr.cpp
+++ b/src/mame/drivers/metlfrzr.cpp
@@ -44,6 +44,11 @@ public:
m_gfxdecode(*this, "gfxdecode")
{ }
+ void metlfrzr(machine_config &config);
+
+ void init_metlfrzr();
+
+private:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
@@ -59,12 +64,10 @@ public:
required_device<palette_device> m_palette;
required_device<gfxdecode_device> m_gfxdecode;
- void init_metlfrzr();
DECLARE_WRITE8_MEMBER(output_w);
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
uint8_t m_fg_tilebank;
bool m_rowscroll_enable;
- void metlfrzr(machine_config &config);
void decrypted_opcodes_map(address_map &map);
void metlfrzr_map(address_map &map);
};