From 8caf2b6b2e0ba09159e5cc997235c85692b66143 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 23 Dec 2013 08:59:44 -0500 Subject: [PATCH] Fix a printf statement in newdc/hw/sh4/sh4_mmr.cpp. Only specified the write address in the statement, however the data was also passed too. --- newdc/hw/sh4/sh4_mmr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newdc/hw/sh4/sh4_mmr.cpp b/newdc/hw/sh4/sh4_mmr.cpp index 34960c463..034806fb8 100644 --- a/newdc/hw/sh4/sh4_mmr.cpp +++ b/newdc/hw/sh4/sh4_mmr.cpp @@ -33,7 +33,7 @@ u32 sh4io_read_noacc(u32 addr) } void sh4io_write_noacc(u32 addr, u32 data) { - printf("sh4io: Invalid write access @@ %08X\n",addr,data); + printf("sh4io: Invalid write access @@ %08X %08X\n",addr,data); //verify(false); } void sh4io_write_const(u32 addr, u32 data)