mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[ARMLLB]: PutChar should be a UCHAR routine, this way we can print characters above 127 (extended ASCII). This is needed for the progress bar, for example.
svn path=/trunk/; revision=45505
This commit is contained in:
parent
fa51458191
commit
68410c584a
2 changed files with 4 additions and 4 deletions
|
@ -274,7 +274,7 @@ ULONG ScreenCursor;
|
|||
|
||||
VOID
|
||||
NTAPI
|
||||
LlbVideoDrawChar(IN CHAR c,
|
||||
LlbVideoDrawChar(IN UCHAR c,
|
||||
IN PUSHORT Buffer,
|
||||
IN USHORT Color,
|
||||
IN USHORT BackColor)
|
||||
|
@ -342,7 +342,7 @@ LlbVideoClearScreen(IN BOOLEAN OsLoader)
|
|||
|
||||
VOID
|
||||
NTAPI
|
||||
LlbVideoPutChar(IN CHAR c)
|
||||
LlbVideoPutChar(IN UCHAR c)
|
||||
{
|
||||
ULONG cx, cy, CharsPerLine, BackColor, ScreenWidth;
|
||||
|
||||
|
|
|
@ -15,13 +15,13 @@ LlbVideoClearScreen(
|
|||
VOID
|
||||
NTAPI
|
||||
LlbVideoPutChar(
|
||||
IN CHAR c
|
||||
IN UCHAR c
|
||||
);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
LlbVideoDrawChar(
|
||||
IN CHAR c,
|
||||
IN UCHAR c,
|
||||
IN PUSHORT Buffer,
|
||||
IN USHORT Color,
|
||||
IN USHORT BackColor
|
||||
|
|
Loading…
Reference in a new issue