kernel: Wrap included font files in iglobal macro.

git-svn-id: svn://kolibrios.org@7718 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Ivan Baravy 2020-02-07 02:13:17 +00:00
parent 6fa329e5b4
commit edd9d00caf

View File

@ -862,15 +862,17 @@ antiAliasing:
mov ebp, ebx mov ebp, ebx
ret ret
iglobal
fontSmoothing db 2 ; = 0, 1 or 2 fontSmoothing db 2 ; = 0, 1 or 2
fontSize db 0 ; user mode setting fontSize db 0 ; user mode setting
font1: font1:
if lang eq sp if lang eq sp
file 'char_sp.mt' file 'gui/char_sp.mt'
else if lang eq et else if lang eq et
file 'char_et.mt' file 'gui/char_et.mt'
else else
file 'char.mt' file 'gui/char.mt'
end if end if
fontUni: fontUni:
file 'charUni.mt' file 'gui/charUni.mt'
endg