A32/location_descriptor: Change formatting to use hex
This commit is contained in:
parent
ccbf6c7f63
commit
b0abaa8312
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
|||
namespace Dynarmic::A32 {
|
||||
|
||||
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& loc) {
|
||||
o << fmt::format("{{{},{},{},{}}}",
|
||||
o << fmt::format("{{{:08x},{},{},{:08x}}}",
|
||||
loc.PC(),
|
||||
loc.TFlag() ? "T" : "!T",
|
||||
loc.EFlag() ? "E" : "!E",
|
||||
|
|
Loading…
Reference in a new issue