1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

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];
};
#define GLYPH_SET_OMMIT_CP 1
#define GLYPH_SET_OMIT_CP 1
struct glyph_set
{
int size;

View File

@ -1549,7 +1549,7 @@ static BOOL map_glyph_to_unicode(struct font_data *font_data,
return FALSE;
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);
unsigned short def_cp;