sh4_opcodes: Fix printf arguments
This partly resolves #660 (needs to applied to linux-64 branch, too).
This commit is contained in:
parent
a9fc0f5aa8
commit
fb50c7570c
|
@ -70,7 +70,7 @@ void cpu_iNimp(u32 op, const char* info)
|
|||
void cpu_iWarn(u32 op, const char* info)
|
||||
{
|
||||
printf("Check opcode : %X : ", op);
|
||||
printf(info);
|
||||
printf("%s", info);
|
||||
printf(" @ %X\n", curr_pc);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue