diff options
| -rw-r--r-- | src/core/arm/unicorn/arm_unicorn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp index 0353454f5..13f6c658c 100644 --- a/src/core/arm/unicorn/arm_unicorn.cpp +++ b/src/core/arm/unicorn/arm_unicorn.cpp | |||
| @@ -52,7 +52,7 @@ static bool UnmappedMemoryHook(uc_engine* uc, uc_mem_type type, u64 addr, int si | |||
| 52 | void* user_data) { | 52 | void* user_data) { |
| 53 | ARM_Interface::ThreadContext ctx{}; | 53 | ARM_Interface::ThreadContext ctx{}; |
| 54 | Core::CPU().SaveContext(ctx); | 54 | Core::CPU().SaveContext(ctx); |
| 55 | ASSERT_MSG(false, "Attempted to read from unmapped memory"); | 55 | ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx", addr); |
| 56 | return {}; | 56 | return {}; |
| 57 | } | 57 | } |
| 58 | 58 | ||