This commit is contained in:
Rudolf Polzer 2010-10-28 14:10:38 +02:00
parent 7417fab6d4
commit 7ff77dec7a
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ sub text_qfont_table($)
my $o = ord $char;
if($color_utf8_enable)
{
return ($o & 0xFF00 == 0xE000) ? $text_qfont_table[$o & 0xFF] : $char;
return (($o & 0xFF00) == 0xE000) ? $text_qfont_table[$o & 0xFF] : $char;
}
else
{

View File

@ -97,7 +97,7 @@ sub text_qfont_table($)
my $o = ord $char;
if($color_utf8_enable)
{
return ($o & 0xFF00 == 0xE000) ? $text_qfont_table[$o & 0xFF] : $char;
return (($o & 0xFF00) == 0xE000) ? $text_qfont_table[$o & 0xFF] : $char;
}
else
{