From 6a325434b00265b9b3f751c72a16b8126c95646f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Sun, 23 May 2010 19:10:13 +0000 Subject: [PATCH] rm logerror flood --- src/emu/cpu/m6502/tdeco16.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/emu/cpu/m6502/tdeco16.c b/src/emu/cpu/m6502/tdeco16.c index adfd190a7c9..24060f90643 100644 --- a/src/emu/cpu/m6502/tdeco16.c +++ b/src/emu/cpu/m6502/tdeco16.c @@ -364,9 +364,8 @@ OP(2f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR2 ZPG ?? */ OP(4f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR4 ZPG ?? */ OP(6f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR6 ZPG ?? */ OP(8f) { int tmp; cpustate->icount -= 1; RD_IMM; - #ifdef MAME_DEBUG - logerror("%04x: BANK (8F) %02x\n",PCW,tmp); - #endif + if (DECO16_VERBOSE) + logerror("%04x: BANK (8F) %02x\n",PCW,tmp); memory_write_byte_8le(cpustate->io,0,tmp);