mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
StringUtil: Move IsPrintableCharacter() into Common namespace
This commit is contained in:
@ -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";
|
||||
|
Reference in New Issue
Block a user