diff --git a/programs/wineconsole/user.c b/programs/wineconsole/user.c index 9b8ad153e51..5c8c2c0281d 100644 --- a/programs/wineconsole/user.c +++ b/programs/wineconsole/user.c @@ -357,6 +357,7 @@ BOOL WCUSER_ValidateFont(const struct inner_data* data, const LOGFONTW* lf) { return (lf->lfPitchAndFamily & 3) == FIXED_PITCH && /* (lf->lfPitchAndFamily & 0xF0) == FF_MODERN && */ + lf->lfFaceName[0] != '@' && (lf->lfCharSet == DEFAULT_CHARSET || lf->lfCharSet == g_uiDefaultCharset); }