diff options
author | 2015-05-23 14:13:32 +0300 | |
---|---|---|
committer | 2015-05-23 14:13:32 +0300 | |
commit | 6b32b9407de5996bcc5819bf0cbed87799ef6dd5 (patch) | |
tree | 2fd1bee6a86b08d7dbae6d53fc44d53272b4bc12 /src | |
parent | 7b4efc967648fae7f8aa3bec3a44a9655f254a9c (diff) |
(MESS) a2600: Fixed E.T. (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/machine/mos6530n.c | 2 |
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; } |