Skip to content

Commit

Permalink
Change diff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnvdwerf authored and janisozaur committed Jan 24, 2018
1 parent 46fb400 commit f25e9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openloco/interop/interop.cpp
Expand Up @@ -361,7 +361,7 @@ namespace openloco::interop
if (left != right)
{
uint32_t addr = lhs.begin + i;
std::printf("0x%06X: %02hhX %02hhX\n", addr, std::to_integer<unsigned char>(left), std::to_integer<unsigned char>(right));
std::printf("0x%06X: %02X %02X\n", addr, (uint8_t)left, (uint8_t)right);
}
}
}
Expand Down

0 comments on commit f25e9f4

Please sign in to comment.