Commit e89aa705 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite: Fix global feature mask to match its shift.

parent ec3ca4ee
...@@ -4407,7 +4407,7 @@ static void opentype_layout_collect_lookups(struct scriptshaping_context *contex ...@@ -4407,7 +4407,7 @@ static void opentype_layout_collect_lookups(struct scriptshaping_context *contex
struct shaping_feature *feature; struct shaping_feature *feature;
unsigned int i, j, next_bit; unsigned int i, j, next_bit;
unsigned int global_bit_shift = 1; unsigned int global_bit_shift = 1;
unsigned int global_bit_mask = 1; unsigned int global_bit_mask = 2;
UINT16 feature_index; UINT16 feature_index;
if (!table->table.data) if (!table->table.data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment