From c4e22005eb5163decd2568586434a5fe4e839d1f Mon Sep 17 00:00:00 2001 From: Roberto Zandona Date: Fri, 22 Aug 2008 18:47:28 +0000 Subject: [PATCH] removed a printf --- src/mame/video/hd63484.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/hd63484.c b/src/mame/video/hd63484.c index 594aba9a03d..3c0ee7e7e9b 100644 --- a/src/mame/video/hd63484.c +++ b/src/mame/video/hd63484.c @@ -525,7 +525,7 @@ static void agcpy(int opcode,int src_x,int src_y,int dst_x,int dst_y,INT16 _ax,I else if ((_ax >= 0) && (_ay < 0) && ((opcode & 0x0800) == 0x0800)) { src_step1_x = 0; src_step1_y = -1; src_step2_x = 1; src_step2_y = -ay; } else if ((_ax < 0) && (_ay >= 0) && ((opcode & 0x0800) == 0x0800)) - { src_step1_x = 0; src_step1_y = 1; src_step2_x = -1; src_step2_y = -ay; printf("here\n");} + { src_step1_x = 0; src_step1_y = 1; src_step2_x = -1; src_step2_y = -ay; } else // ((_ax < 0) && (_ay < 0) && ((opcode & 0x0800) == 0x0800)) { src_step1_x = 0; src_step1_y = -1; src_step2_x = -1; src_step2_y = -ay; }