Fix wrongly converted specifiers

Sorry that was a lot in one go so some of them had some mistakes
This commit is contained in:
Daniel Lim Wee Soong
2018-03-27 23:37:36 +08:00
parent 0f4c9c9f47
commit 20776b37be
5 changed files with 12 additions and 12 deletions

View File

@@ -154,7 +154,7 @@ ResultCode HLERequestContext::PopulateFromIncomingCommandBuffer(const u32_le* sr
break;
}
default:
UNIMPLEMENTED_MSG("Unsupported handle translation: {:#X}", descriptor);
UNIMPLEMENTED_MSG("Unsupported handle translation: {:#010X}", descriptor);
}
}
@@ -218,7 +218,7 @@ ResultCode HLERequestContext::WriteToOutgoingCommandBuffer(u32_le* dst_cmdbuf, P
break;
}
default:
UNIMPLEMENTED_MSG("Unsupported handle translation: {:#X}", descriptor);
UNIMPLEMENTED_MSG("Unsupported handle translation: {:#010X}", descriptor);
}
}