wineps: Fix the spelling of a constant.

This commit is contained in:
Francois Gouget 2023-05-17 12:41:56 +02:00 committed by Alexandre Julliard
parent c627c168c2
commit 2cb4fa04cf
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ struct list_entry
int unk[4]; int unk[4];
}; };
#define GLYPH_SET_OMMIT_CP 1 #define GLYPH_SET_OMIT_CP 1
struct glyph_set struct glyph_set
{ {
int size; int size;

View file

@ -1549,7 +1549,7 @@ static BOOL map_glyph_to_unicode(struct font_data *font_data,
return FALSE; return FALSE;
p = (const unsigned short *)((const char *)glyph_set + glyph_set->glyph_set_off); p = (const unsigned short *)((const char *)glyph_set + glyph_set->glyph_set_off);
if (glyph_set->flags & GLYPH_SET_OMMIT_CP) if (glyph_set->flags & GLYPH_SET_OMIT_CP)
{ {
const struct code_page *code_page = (const struct code_page *)((const char *)glyph_set + glyph_set->cp_off); const struct code_page *code_page = (const struct code_page *)((const char *)glyph_set + glyph_set->cp_off);
unsigned short def_cp; unsigned short def_cp;