mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Build fix:
Don't use isascii() - just do it ourselves Bump required wxw version (for shared libs) There still seems to be linking issues on some linux distros, I can't reproduce it though...
This commit is contained in:
@ -73,8 +73,6 @@
|
||||
#include "State.h"
|
||||
#include "Movie.h"
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
// TODO: ugly, remove
|
||||
bool g_aspect_wide;
|
||||
|
||||
@ -132,8 +130,9 @@ void DisplayMessage(const char *message, int time_in_ms)
|
||||
SConfig::GetInstance().m_LocalCoreStartupParameter;
|
||||
|
||||
// Actually displaying non-ASCII could cause things to go pear-shaped
|
||||
if (!isascii(message))
|
||||
return;
|
||||
for (const char *c = message; *c != '\0'; ++c)
|
||||
if (*c < ' ')
|
||||
return;
|
||||
|
||||
g_video_backend->Video_AddMessage(message, time_in_ms);
|
||||
|
||||
|
Reference in New Issue
Block a user