summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.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/debug/debugcpu.cpp
parent0d0ecae0a4e531452dfd20ee75ebbedaaad7a32d (diff)
parent3d5c53d11e99d109c4e6351aeade2fb7e857e71b (diff)
Merge pull request #776 from jmallach/typos
Fix typos throughout the codebase
Diffstat (limited to 'src/emu/debug/debugcpu.cpp')
-rw-r--r--src/emu/debug/debugcpu.cpp2
1 files changed, 1 insertions, 1 deletions
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);