mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 01:08:34 +00:00
StringUtil: Move IsPrintableCharacter() into Common namespace
This commit is contained in:
parent
a9f1edeb61
commit
21df3ca572
9 changed files with 21 additions and 18 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue