From e20ab71d12b032371b830b76462e5e979d963b58 Mon Sep 17 00:00:00 2001 From: Garret Rieger Date: Mon, 26 Feb 2018 16:13:10 -0800 Subject: [PATCH] [subset] Fix incorrect index. --- src/hb-ot-os2-table.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-os2-table.hh b/src/hb-ot-os2-table.hh index 7325e93ef..754537a6a 100644 --- a/src/hb-ot-os2-table.hh +++ b/src/hb-ot-os2-table.hh @@ -95,7 +95,7 @@ struct os2 /* the spec says that bit 57 ("Non Plane 0") implies that there's at least one codepoint beyond the BMP; so I also include all the non-BMP codepoints here */ - ulUnicodeRange[2].set (ulUnicodeRange[2] | (1 << 25)); + ulUnicodeRange[1].set (ulUnicodeRange[1] | (1 << 25)); } } }