mirror of
https://gitlab.com/xonotic/xonotic
synced 2024-12-15 11:24:56 +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;
|
||||
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
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user