summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2015-05-23 14:13:32 +0300
committer Curt Coder <curtcoder@mail.com>2015-05-23 14:13:32 +0300
commit6b32b9407de5996bcc5819bf0cbed87799ef6dd5 (patch)
tree2fd1bee6a86b08d7dbae6d53fc44d53272b4bc12
parent7b4efc967648fae7f8aa3bec3a44a9655f254a9c (diff)
(MESS) a2600: Fixed E.T. (nw)
-rw-r--r--src/emu/machine/mos6530n.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/mos6530n.c b/src/emu/machine/mos6530n.c
index 667399ebba5..5be58765405 100644
--- a/src/emu/machine/mos6530n.c
+++ b/src/emu/machine/mos6530n.c
@@ -809,7 +809,7 @@ void mos6530_base_t::live_run(const attotime &limit)
if (LOG_TIMER) logerror("%s %s '%s' timer %02x IRQ 0\n", cur_live.tm.as_string(), name(), tag(), cur_live.value);
if (!cur_live.value) {
- live_abort();
+ cur_live.state = IDLE;
return;
}