mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 17:49:48 -06:00
Merge pull request #4286 from shuffle2/Aestek-clean-osd
Clean OSD messages code
This commit is contained in:
@ -172,13 +172,6 @@ void DisplayMessage(const std::string& message, int time_in_ms)
|
||||
if (!IsRunning())
|
||||
return;
|
||||
|
||||
// Actually displaying non-ASCII could cause things to go pear-shaped
|
||||
for (const char& c : message)
|
||||
{
|
||||
if (!std::isprint(c))
|
||||
return;
|
||||
}
|
||||
|
||||
OSD::AddMessage(message, time_in_ms);
|
||||
Host_UpdateTitle(message);
|
||||
}
|
||||
|
Reference in New Issue
Block a user