Merge branch 'master' of https://github.com/xenia-project/xenia into canary_experimental

This commit is contained in:
Gliniak
2022-09-20 21:15:12 +02:00
3 changed files with 42 additions and 2 deletions

View File

@@ -349,8 +349,8 @@ class TestRunner {
uint32_t expected = std::strtoul(ccs, nullptr, 16);
uint8_t actual = *p;
expecteds.AppendFormat(" %02X", expected);
actuals.AppendFormat(" %02X", actual);
expecteds.AppendFormat(" {:02X}", expected);
actuals.AppendFormat(" {:02X}", actual);
if (expected != actual) {
any_failed = true;