Merge pull request #4142 from Morph1984/core-arm-logging

arm_dynarmic: Minor logging changes
This commit is contained in:
LC 2020-06-22 14:21:53 -04:00 committed by GitHub
commit 25174afa79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -62,7 +62,7 @@ public:
case Dynarmic::A32::Exception::Breakpoint: case Dynarmic::A32::Exception::Breakpoint:
break; break;
} }
LOG_CRITICAL(HW_GPU, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})", LOG_CRITICAL(Core_ARM, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})",
static_cast<std::size_t>(exception), pc, MemoryReadCode(pc)); static_cast<std::size_t>(exception), pc, MemoryReadCode(pc));
UNIMPLEMENTED(); UNIMPLEMENTED();
} }

View file

@ -98,8 +98,8 @@ public:
} }
[[fallthrough]]; [[fallthrough]];
default: default:
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:X})", ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})",
static_cast<std::size_t>(exception), pc); static_cast<std::size_t>(exception), pc, MemoryReadCode(pc));
} }
} }