mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +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')
|
else if (ch == '\n')
|
||||||
{
|
{
|
||||||
|
do
|
||||||
RawPutChar(CH_SPACE);
|
RawPutChar(CH_SPACE);
|
||||||
while (text.raw_col % text.cols)
|
while (text.raw_col % text.cols);
|
||||||
RawPutChar(CH_SPACE);
|
|
||||||
}
|
}
|
||||||
else if (Bt(char_bmp_displayable, ch))
|
else if (Bt(char_bmp_displayable, ch))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue