mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-27 07:46:33 +00:00
Remove commented old code lines from KMain.
This commit is contained in:
parent
628848c79d
commit
dbbf751a44
1 changed files with 3 additions and 8 deletions
|
@ -81,17 +81,12 @@ U0 SysGlobalsInit()
|
||||||
|
|
||||||
U0 SysGrInit()
|
U0 SysGrInit()
|
||||||
{
|
{
|
||||||
I64 i, j;
|
I64 i;
|
||||||
text.aux_font = MAlloc(256 * 8); //256 U64s
|
|
||||||
// MemCopy(text.aux_font, *SYS_FONT_PTR(U32), 256 * 8);
|
|
||||||
text.aux_font = sys_font_aux;
|
|
||||||
|
|
||||||
// for (i = 0; i < 256; i++)
|
|
||||||
// for (j = 0; j < 8; j++)
|
|
||||||
// text.aux_font[i].u8[j] = rev_bits_table[text.aux_font[i].u8[j]];
|
|
||||||
|
|
||||||
text.font = sys_font_std;
|
text.font = sys_font_std;
|
||||||
|
|
||||||
|
text.aux_font = sys_font_aux;
|
||||||
|
|
||||||
//patch some chars
|
//patch some chars
|
||||||
text.aux_font[10] = text.font[10]; //"Return" symbol
|
text.aux_font[10] = text.font[10]; //"Return" symbol
|
||||||
text.aux_font[255] = text.font[255]; //Block symbol ÿ
|
text.aux_font[255] = text.font[255]; //Block symbol ÿ
|
||||||
|
|
Loading…
Reference in a new issue