dwrite: Fix global feature mask to match its shift.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2020-06-05 16:38:01 +03:00 committed by Alexandre Julliard
parent ec3ca4ee73
commit e89aa70555
1 changed files with 1 additions and 1 deletions

View File

@ -4407,7 +4407,7 @@ static void opentype_layout_collect_lookups(struct scriptshaping_context *contex
struct shaping_feature *feature;
unsigned int i, j, next_bit;
unsigned int global_bit_shift = 1;
unsigned int global_bit_mask = 1;
unsigned int global_bit_mask = 2;
UINT16 feature_index;
if (!table->table.data)