arm_unicorn.cpp: Correct Variable Types

This commit is contained in:
N00byKing
2018-03-25 12:29:24 +02:00
committed by N00byKing
parent 32b62d709a
commit 0236d34a72

View File

@@ -53,7 +53,7 @@ static bool UnmappedMemoryHook(uc_engine* uc, uc_mem_type type, u64 addr, int si
void* user_data) {
ARM_Interface::ThreadContext ctx{};
Core::CPU().SaveContext(ctx);
ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%lx, pc=0x%lx, lr=0x%lx", addr,
ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%" PRIx64 ", pc=0x%" PRIx64 ", lr=0x%" PRIx64, addr,
ctx.pc, ctx.cpu_registers[30]);
return {};
}