From 790edbb11b2c1593a22e81d95c0e6e2a230d28bd Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sun, 8 Feb 2009 02:21:02 +0000 Subject: [PATCH] Small bugfix for an SH-2 logging message. --- src/emu/cpu/sh2/sh2comn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/cpu/sh2/sh2comn.c b/src/emu/cpu/sh2/sh2comn.c index 291c86afc2d..ca121821aaa 100644 --- a/src/emu/cpu/sh2/sh2comn.c +++ b/src/emu/cpu/sh2/sh2comn.c @@ -275,7 +275,7 @@ static void sh2_dmac_check(SH2 *sh2, int dma) { if(sh2->dma_timer_active[dma]) { - logerror("SH2: DMA %d cancelled in-flight", dma); + logerror("SH2: DMA %d cancelled in-flight\n", dma); timer_adjust_oneshot(sh2->dma_timer[dma], attotime_never, 0); sh2->dma_timer_active[dma] = 0; }