summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lastfght.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lastfght.cpp')
-rw-r--r--src/mame/drivers/lastfght.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/lastfght.cpp b/src/mame/drivers/lastfght.cpp
index cffa54f91dc..c616cec79c4 100644
--- a/src/mame/drivers/lastfght.cpp
+++ b/src/mame/drivers/lastfght.cpp
@@ -99,7 +99,7 @@ public:
DECLARE_WRITE16_MEMBER(c00006_w);
DECLARE_READ16_MEMBER(sound_r);
DECLARE_WRITE16_MEMBER(sound_w);
- DECLARE_DRIVER_INIT(lastfght);
+ void init_lastfght();
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void lastfght(machine_config &config);
@@ -592,7 +592,7 @@ ROM_START( lastfght )
ROM_LOAD( "v100.u7", 0x000000, 0x100000, CRC(c134378c) SHA1(999c75f3a7890421cfd904a926ca377ee43a6825) )
ROM_END
-DRIVER_INIT_MEMBER(lastfght_state,lastfght)
+void lastfght_state::init_lastfght()
{
uint16_t *rom = (uint16_t*)memregion("maincpu")->base();
@@ -603,4 +603,4 @@ DRIVER_INIT_MEMBER(lastfght_state,lastfght)
rom[0x01b86 / 2] = 0x5670;
}
-GAME( 2000, lastfght, 0, lastfght, lastfght, lastfght_state, lastfght, ROT0, "Subsino", "Last Fighting", MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE )
+GAME( 2000, lastfght, 0, lastfght, lastfght, lastfght_state, init_lastfght, ROT0, "Subsino", "Last Fighting", MACHINE_NO_SOUND | MACHINE_SUPPORTS_SAVE )