aboutsummaryrefslogtreecommitdiffstats
path: root/libparsepcf_get_bitmaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'libparsepcf_get_bitmaps.c')
-rw-r--r--libparsepcf_get_bitmaps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libparsepcf_get_bitmaps.c b/libparsepcf_get_bitmaps.c
index cad51f3..8265db3 100644
--- a/libparsepcf_get_bitmaps.c
+++ b/libparsepcf_get_bitmaps.c
@@ -39,8 +39,8 @@ libparsepcf_get_bitmaps(const void *file, size_t size,
meta->bit_packing = (size_t)1 << ((table->format & LIBPARSEPCF_SCAN_UNIT_MASK) >> 4);
meta->row_padding = (size_t)1 << ((table->format & LIBPARSEPCF_GLYPH_PAD_MASK) >> 0);
- meta->lsbyte = !!(table->format & LIBPARSEPCF_BYTE);
- meta->lsbit = !!(table->format & LIBPARSEPCF_BIT);
+ meta->msbyte_first = !!(table->format & LIBPARSEPCF_BYTE);
+ meta->msbit_first = !!(table->format & LIBPARSEPCF_BIT);
if (meta->row_padding < meta->bit_packing)
goto ebfont;