summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/pocketc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pocketc.cpp')
-rw-r--r--src/mame/machine/pocketc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/pocketc.cpp b/src/mame/machine/pocketc.cpp
index 6afa6a5c84e..528084a5dbb 100644
--- a/src/mame/machine/pocketc.cpp
+++ b/src/mame/machine/pocketc.cpp
@@ -22,7 +22,7 @@ void pocketc_state::device_timer(emu_timer &timer, device_timer_id id, int param
m_power = 0;
break;
default:
- assert_always(false, "Unknown id in pocketc_state::device_timer");
+ throw emu_fatalerror("Unknown id in pocketc_state::device_timer");
}
}
-14 00:44:46 +1100'>2019-01-141-17/+26 * try to appease GCC, update language files (nw) Vas Crabb2017-08-211-1/+1 * UI improvements: Vas Crabb2017-08-211-7/+20 * clean up some of the UI filter stuff, show list descriptions rather than name... Vas Crabb2017-08-181-5/+34 * add a not BIOS machine filter (useful in composite filters), support RGB PNG ... Vas Crabb2017-08-151-0/+1 * MSVC is a trouxa that doesn't like constructor inheritance with templated bas... Vas Crabb2017-08-111-1/+1 * ui: make category filter work like all the other filters Vas Crabb2017-08-111-4/+2 * ui: improve layout of art/info box, support mousewheel scroll in info Vas Crabb2017-08-101-1/+2 * Remove a whole lot of I64 from format strings. Vas Crabb2017-08-101-1/+0 * Polymorphic machine/software list filters: Vas Crabb2017-08-091-90/+146 * make filter names localisable, fix keyboard navigation of software Vas Crabb2017-08-081-67/+84 * Make internal UI display list of missing files if system/software set is foun... Vas Crabb2017-07-191-16/+27 * Starting from the Favorites menu now starts the software list submenu (if nec... Dankan18902017-05-151-8/+5 * NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-221-24/+24 * use standard types uintptr_t, char16_t and char32_t instead of FPTR, utf16_c... Miodrag Milanovic2016-10-221-2/+2 * Fixing issue where a multibyte character could cause the maximum size to be e...