summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Jordi Mallach <jordi@mallach.net>2016-03-31 23:42:24 +0200
committer Jordi Mallach <jordi@mallach.net>2016-04-01 02:28:16 +0200
commit3d5c53d11e99d109c4e6351aeade2fb7e857e71b (patch)
tree375dc4806d056cb05751a8f834d935dd567fa636
parent94ad873787e87c3bf6feb1581baebf60caed76f9 (diff)
Typo fix: threshhold → threshold
-rw-r--r--src/emu/debug/debugcmd.cpp2
-rw-r--r--src/emu/debug/debugcpu.cpp2
-rw-r--r--src/emu/ui/ui.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index cd16bd4e691..5fb1743004a 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -1692,7 +1692,7 @@ static void execute_hotspot(running_machine &machine, int ref, int params, const
/* attempt to install */
device->debug()->hotspot_track(count, threshhold);
- debug_console_printf(machine, "Now tracking hotspots on CPU '%s' using %d slots with a threshhold of %d\n", device->tag(), (int)count, (int)threshhold);
+ debug_console_printf(machine, "Now tracking hotspots on CPU '%s' using %d slots with a threshold of %d\n", device->tag(), (int)count, (int)threshhold);
}
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp
index 7e352e7dbe8..52589dd9f42 100644
--- a/src/emu/debug/debugcpu.cpp
+++ b/src/emu/debug/debugcpu.cpp
@@ -3083,7 +3083,7 @@ void device_debug::hotspot_check(address_space &space, offs_t address)
// if we didn't find any, make a new entry
if (hotindex == m_hotspots.size())
{
- // if the bottom of the list is over the threshhold, print it
+ // if the bottom of the list is over the threshold, print it
hotspot_entry &spot = m_hotspots[m_hotspots.size() - 1];
if (spot.m_count > m_hotspot_threshhold)
debug_console_printf(space.machine(), "Hotspot @ %s %08X (PC=%08X) hit %d times (fell off bottom)\n", space.name(), spot.m_access, spot.m_pc, spot.m_count);
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp
index 9bb27762c3b..7b05eb8ae4e 100644
--- a/src/emu/ui/ui.cpp
+++ b/src/emu/ui/ui.cpp
@@ -552,7 +552,7 @@ float ui_manager::get_line_height()
// if our font is small-ish, do integral scaling
if (raw_font_pixel_height < 24)
{
- // do we want to scale smaller? only do so if we exceed the threshhold
+ // do we want to scale smaller? only do so if we exceed the threshold
if (scale_factor <= 1.0f)
{
if (one_to_one_line_height < UI_MAX_FONT_HEIGHT || raw_font_pixel_height < 12)