gdi32: Fix a typo in unix_face_create().
This also fixes test failures in test_lang_names() when on Japanese system. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51382 Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5edf65616a
commit
aee7d560ae
|
@ -1245,7 +1245,7 @@ static struct unix_face *unix_face_create( const char *unix_name, void *data_ptr
|
|||
This->style_name = decode_opentype_name( &style_name.face_name );
|
||||
|
||||
memset( &full_name, 0, sizeof(full_name) );
|
||||
style_name.primary_langid = primary_langid;
|
||||
full_name.primary_langid = primary_langid;
|
||||
opentype_enum_full_names( tt_name_v0, search_face_name_callback, &full_name );
|
||||
This->full_name = decode_opentype_name( &full_name.face_name );
|
||||
|
||||
|
|
Loading…
Reference in New Issue