mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +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()
|
||||
{
|
||||
I64 i, j;
|
||||
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]];
|
||||
I64 i;
|
||||
|
||||
text.font = sys_font_std;
|
||||
|
||||
text.aux_font = sys_font_aux;
|
||||
|
||||
//patch some chars
|
||||
text.aux_font[10] = text.font[10]; //"Return" symbol
|
||||
text.aux_font[255] = text.font[255]; //Block symbol ÿ
|
||||
|
|
Loading…
Reference in a new issue