summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-08-11 21:10:43 +0200
committer Olivier Galibert <galibert@pobox.com>2018-08-11 21:11:08 +0200
commit09eb0ae12bc02430b867817bee839c258499e29c (patch)
tree6f09bc9934902c2771b5b83a32bc726569c381ee
parent7e592bc3de5d730726e62a4c82a559bcc3074e75 (diff)
orion128 fix (nw)
-rw-r--r--src/mame/includes/orion.h1
-rw-r--r--src/mame/machine/orion.cpp2
2 files changed, 2 insertions, 1 deletions
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;