summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/validity.cpp
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2016-04-12 08:48:35 -0400
committer R. Belmont <rb6502@users.noreply.github.com>2016-04-12 08:48:35 -0400
commit3ed3b7e7fcc4f828106149272e3c3ee9fb0ccb65 (patch)
tree1deef1318e78ec3d28745a77fef2faec2712ae20 /src/emu/validity.cpp
parent0d0ecae0a4e531452dfd20ee75ebbedaaad7a32d (diff)
parent3d5c53d11e99d109c4e6351aeade2fb7e857e71b (diff)
Merge pull request #776 from jmallach/typos
Fix typos throughout the codebase
Diffstat (limited to 'src/emu/validity.cpp')
-rw-r--r--src/emu/validity.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/validity.cpp b/src/emu/validity.cpp
index bfe5c40221e..2397ad444a6 100644
--- a/src/emu/validity.cpp
+++ b/src/emu/validity.cpp
@@ -510,7 +510,7 @@ void validity_checker::validate_driver()
// if we have at least 100 drivers, validate the clone
// (100 is arbitrary, but tries to avoid tiny.mak dependencies)
if (driver_list::total() > 100 && clone_of == -1 && is_clone)
- osd_printf_error("Driver is a clone of nonexistant driver %s\n", m_current_driver->parent);
+ osd_printf_error("Driver is a clone of nonexistent driver %s\n", m_current_driver->parent);
// look for recursive cloning
if (clone_of != -1 && &m_drivlist.driver(clone_of) == m_current_driver)
@@ -541,7 +541,7 @@ void validity_checker::validate_driver()
// check for this driver being compatible with a non-existant driver
if (compatible_with != nullptr && m_drivlist.find(m_current_driver->compatible_with) == -1)
- osd_printf_error("Driver is listed as compatible with nonexistant driver %s\n", m_current_driver->compatible_with);
+ osd_printf_error("Driver is listed as compatible with nonexistent driver %s\n", m_current_driver->compatible_with);
// check for clone_of and compatible_with being specified at the same time
if (m_drivlist.clone(*m_current_driver) != -1 && compatible_with != nullptr)