A32/location_descriptor: Change formatting to use hex

This commit is contained in:
MerryMage 2018-08-25 22:56:54 +01:00
parent ccbf6c7f63
commit b0abaa8312

View file

@ -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",