StringUtil: Move IsPrintableCharacter() into Common namespace

This commit is contained in:
Lioncash 2023-05-16 14:17:54 -04:00
parent a9f1edeb61
commit 21df3ca572
9 changed files with 21 additions and 18 deletions

View file

@ -77,7 +77,7 @@ std::string HexDump(const u8* data, size_t size)
if (row_start + i < size)
{
char c = static_cast<char>(data[row_start + i]);
out += IsPrintableCharacter(c) ? c : '.';
out += Common::IsPrintableCharacter(c) ? c : '.';
}
}
out += "\n";