From 8a0dc4cbc43ff5c1b09f70059bad7c231fc8af85 Mon Sep 17 00:00:00 2001 From: David Haywood <28625134+DavidHaywood@users.noreply.github.com> Date: Thu, 18 Jan 2018 20:19:46 +0000 Subject: [PATCH] fix compile (the online resolver didn't resolve this in the correct order or prompt me about it) --- src/mame/includes/kickgoal.h | 4 ++-- 1 file 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 m_gfxdecode; required_device m_palette; - void kickgoal(machine_config &config); - void actionhw(machine_config &config); };