summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/diexec.cpp
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-14 23:44:37 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-14 23:45:04 +0100
commitbf0cfcf13d2a1e9b3baac38f47f02c094e99cae0 (patch)
tree3fdd99ed1938aeb4b7dc6c63ef301452a30ae3a7 /src/emu/diexec.cpp
parent3cbc7627cabd29242b3df66a366c998f92104102 (diff)
-keyboard/a1200, changela, goldnpkr, m68705prg, mexico86, pipeline, pitnrun, qix, quizpun2, stfight, tigeroad: Removed MACHINE_CONFIG. [Ryan Holtz]
-m68705, m68hc05: Removed MCFG. [Ryan Holtz] -qix: First-pass cleanup. [Ryan Holtz] -core: Fixed spelling of "nonexistent". [Ryan Holtz]
Diffstat (limited to 'src/emu/diexec.cpp')
-rw-r--r--src/emu/diexec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/diexec.cpp b/src/emu/diexec.cpp
index 67cb9bd123f..fba63aa1e7d 100644
--- a/src/emu/diexec.cpp
+++ b/src/emu/diexec.cpp
@@ -351,7 +351,7 @@ void device_execute_interface::interface_validity_check(validity_checker &valid)
if (iter.first() == nullptr)
osd_printf_error("VBLANK interrupt specified, but the driver is screenless\n");
else if (m_vblank_interrupt_screen != nullptr && device().siblingdevice(m_vblank_interrupt_screen) == nullptr)
- osd_printf_error("VBLANK interrupt references a non-existant screen tag '%s'\n", m_vblank_interrupt_screen);
+ osd_printf_error("VBLANK interrupt references a nonexistent screen tag '%s'\n", m_vblank_interrupt_screen);
}
if (!m_timed_interrupt.isnull() && m_timed_interrupt_period == attotime::zero)