summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/special.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/special.cpp')
-rw-r--r--src/mame/machine/special.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mame/machine/special.cpp b/src/mame/machine/special.cpp
index 92511b9d6a2..bd971917260 100644
--- a/src/mame/machine/special.cpp
+++ b/src/mame/machine/special.cpp
@@ -119,14 +119,12 @@ void special_state::device_timer(emu_timer &timer, device_timer_id id, int param
m_bank1->set_entry(0);
break;
case TIMER_PIT8253_GATES:
- {
m_pit->write_gate0(0);
m_pit->write_gate1(0);
m_pit->write_gate2(0);
break;
- }
default:
- assert_always(false, "Unknown id in special_state::device_timer");
+ throw emu_fatalerror("Unknown id in special_state::device_timer");
}
}