mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-01-05 21:49:33 +00:00
typo fix
This commit is contained in:
parent
7417fab6d4
commit
7ff77dec7a
@ -96,7 +96,7 @@ sub text_qfont_table($)
|
|||||||
my $o = ord $char;
|
my $o = ord $char;
|
||||||
if($color_utf8_enable)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
@ -97,7 +97,7 @@ sub text_qfont_table($)
|
|||||||
my $o = ord $char;
|
my $o = ord $char;
|
||||||
if($color_utf8_enable)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user