diff options
author | 2010-09-30 07:04:05 +0000 | |
---|---|---|
committer | 2010-09-30 07:04:05 +0000 | |
commit | 0c9d45f0a2ae77cb26b6fd5c71e7006f08d6692d (patch) | |
tree | a11faecf48570fdaba381f336b4e74963ff7448d /src/emu/cpu/adsp2100 | |
parent | ce80e373b22fa247d00873ec0cd6418c25294a5a (diff) |
Fix type found by clang.
Diffstat (limited to 'src/emu/cpu/adsp2100')
-rw-r--r-- | src/emu/cpu/adsp2100/adsp2100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/adsp2100/adsp2100.c b/src/emu/cpu/adsp2100/adsp2100.c index a6e0dfbbf65..8442de2287d 100644 --- a/src/emu/cpu/adsp2100/adsp2100.c +++ b/src/emu/cpu/adsp2100/adsp2100.c @@ -1269,7 +1269,7 @@ void adsp21xx_device::execute_run() // debugging m_ppc = m_pc; // copy PC to previous PC if (check_debugger) - debugger_instruction_hook(*this, m_pc); + debugger_instruction_hook(this, m_pc); #if ADSP_TRACK_HOTSPOTS m_pcbucket[m_pc & 0x3fff]++; |