sh4_opcodes: Fix printf arguments

This partly resolves #660 (needs to applied to linux-64 branch, too).
This commit is contained in:
Jan Holthuis 2015-06-13 16:55:12 +02:00
parent a9fc0f5aa8
commit fb50c7570c
1 changed files with 1 additions and 1 deletions

View File

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