Fix some build errors.

This commit is contained in:
Henrik Rydgard 2016-10-10 22:01:20 -07:00 committed by Unknown W. Brackets
parent c40e507f3d
commit f6ebedba78
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#endif
#include <string>
#include <cstdint>
#include <sstream>
extern "C" {

View File

@ -687,7 +687,7 @@ void Arm64RegCache::SetImm(MIPSGPReg r, u64 immVal) {
return;
}
if (r == MIPS_REG_ZERO && immVal != 0) {
ERROR_LOG_REPORT(JIT, "Trying to set immediate %08x to r0 at %08x", immVal, compilerPC_);
ERROR_LOG_REPORT(JIT, "Trying to set immediate %08x to r0 at %08x", (u32)immVal, compilerPC_);
return;
}