[OT] Fix script to ot-script-tag conversion

This commit is contained in:
Behdad Esfahbod 2011-04-20 14:20:00 -04:00
parent a3036a3e97
commit 440a76b630
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ hb_ot_old_tag_from_script (hb_script_t script)
} }
/* Else, just change first char to lowercase and return */ /* Else, just change first char to lowercase and return */
return ((hb_tag_t) script) | 0x02000000; return ((hb_tag_t) script) | 0x20000000;
} }
static hb_script_t static hb_script_t
@ -73,7 +73,7 @@ hb_ot_old_tag_to_script (hb_tag_t tag)
} }
/* Else, just change first char to uppercase and return */ /* Else, just change first char to uppercase and return */
return (hb_script_t) (tag & ~0x02000000); return (hb_script_t) (tag & ~0x20000000);
} }
static hb_tag_t static hb_tag_t