From 0c9d45f0a2ae77cb26b6fd5c71e7006f08d6692d Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 30 Sep 2010 07:04:05 +0000 Subject: [PATCH] Fix type found by clang. --- src/emu/cpu/adsp2100/adsp2100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]++;