mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-03 14:40:49 +00:00
Fix some build errors.
This commit is contained in:
parent
c40e507f3d
commit
f6ebedba78
@ -8,6 +8,7 @@
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
#include <cstdint>
|
||||
#include <sstream>
|
||||
|
||||
extern "C" {
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user