summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author David Haywood <28625134+DavidHaywood@users.noreply.github.com>2018-01-18 20:19:46 +0000
committer David Haywood <28625134+DavidHaywood@users.noreply.github.com>2018-01-18 20:19:46 +0000
commit8a0dc4cbc43ff5c1b09f70059bad7c231fc8af85 (patch)
treeacf08c964d87619a23e8eb8e461cbea5ea30915a
parentcb487cd0e9c1d4805c2fd9e2f60d975b8f1b201c (diff)
fix compile (the online resolver didn't resolve this in the correct order or prompt me about it)
-rw-r--r--src/mame/includes/kickgoal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/kickgoal.h b/src/mame/includes/kickgoal.h
index 891b47d05d7..48b0568f29c 100644
--- a/src/mame/includes/kickgoal.h
+++ b/src/mame/includes/kickgoal.h
@@ -48,6 +48,8 @@ public:
uint32_t screen_update_kickgoal(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void kickgoal(machine_config &config);
+ void actionhw(machine_config &config);
protected:
virtual void machine_start() override;
virtual void machine_reset() override;
@@ -93,6 +95,4 @@ private:
required_memory_bank m_okibank;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void kickgoal(machine_config &config);
- void actionhw(machine_config &config);
};