mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-24 22:50:28 +00:00
Merge pull request #145 from mknos/kdisplay_loop
Merge duplicate RawPutChar() call into do-while loop
This commit is contained in:
commit
ff3cbf160b
1 changed files with 2 additions and 2 deletions
|
@ -47,9 +47,9 @@ See also $LK,"GrUpdateScreen",A="MN:GrUpdateScreen"$().
|
|||
}
|
||||
else if (ch == '\n')
|
||||
{
|
||||
RawPutChar(CH_SPACE);
|
||||
while (text.raw_col % text.cols)
|
||||
do
|
||||
RawPutChar(CH_SPACE);
|
||||
while (text.raw_col % text.cols);
|
||||
}
|
||||
else if (Bt(char_bmp_displayable, ch))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue