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.

This commit is contained in:
Lioncash 2013-12-23 08:59:44 -05:00
parent 26c2b86f8b
commit 8caf2b6b2e
1 changed files with 1 additions and 1 deletions

View File

@ -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)