From ab3351c262528542a2eff8bb99415730da1718a6 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Fri, 28 Dec 2012 15:04:22 -0800 Subject: COmment out fifo full debug printf --- vdp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vdp.c') diff --git a/vdp.c b/vdp.c index 3af6bc6..e4e396e 100644 --- a/vdp.c +++ b/vdp.c @@ -1063,9 +1063,9 @@ void vdp_data_port_write(vdp_context * context, uint16_t value) { //printf("data port write: %X\n", value); context->flags &= ~FLAG_PENDING; - if (context->fifo_cur == context->fifo_end) { + /*if (context->fifo_cur == context->fifo_end) { printf("FIFO full, waiting for space before next write at cycle %X\n", context->cycles); - } + }*/ while (context->fifo_cur == context->fifo_end) { vdp_run_context(context, context->cycles + ((context->latched_mode & BIT_H40) ? 16 : 20)); } -- cgit v1.2.3