From 09eb0ae12bc02430b867817bee839c258499e29c Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sat, 11 Aug 2018 21:10:43 +0200 Subject: [PATCH] orion128 fix (nw) --- src/mame/includes/orion.h | 1 + src/mame/machine/orion.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/includes/orion.h b/src/mame/includes/orion.h index 3c2965bafec..7124212c50c 100644 --- a/src/mame/includes/orion.h +++ b/src/mame/includes/orion.h @@ -137,6 +137,7 @@ protected: void orion_set_video_mode(int width); void orionpro_bank_switch(); virtual void machine_start() override; + virtual void machine_reset() override; }; class orion_z80_state : public orion_state diff --git a/src/mame/machine/orion.cpp b/src/mame/machine/orion.cpp index 764994255c3..f13f937ccf0 100644 --- a/src/mame/machine/orion.cpp +++ b/src/mame/machine/orion.cpp @@ -139,7 +139,7 @@ WRITE8_MEMBER(orion_state::orion128_memory_page_w) } } -MACHINE_RESET_MEMBER(orion_state,orion128) +void orion_state::machine_reset() { m_orion128_video_page = 0; m_orion128_video_mode = 0;