mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:03:00 +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
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
LlbVideoDrawChar(IN CHAR c,
|
LlbVideoDrawChar(IN UCHAR c,
|
||||||
IN PUSHORT Buffer,
|
IN PUSHORT Buffer,
|
||||||
IN USHORT Color,
|
IN USHORT Color,
|
||||||
IN USHORT BackColor)
|
IN USHORT BackColor)
|
||||||
|
@ -342,7 +342,7 @@ LlbVideoClearScreen(IN BOOLEAN OsLoader)
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
LlbVideoPutChar(IN CHAR c)
|
LlbVideoPutChar(IN UCHAR c)
|
||||||
{
|
{
|
||||||
ULONG cx, cy, CharsPerLine, BackColor, ScreenWidth;
|
ULONG cx, cy, CharsPerLine, BackColor, ScreenWidth;
|
||||||
|
|
||||||
|
|
|
@ -15,13 +15,13 @@ LlbVideoClearScreen(
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
LlbVideoPutChar(
|
LlbVideoPutChar(
|
||||||
IN CHAR c
|
IN UCHAR c
|
||||||
);
|
);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
LlbVideoDrawChar(
|
LlbVideoDrawChar(
|
||||||
IN CHAR c,
|
IN UCHAR c,
|
||||||
IN PUSHORT Buffer,
|
IN PUSHORT Buffer,
|
||||||
IN USHORT Color,
|
IN USHORT Color,
|
||||||
IN USHORT BackColor
|
IN USHORT BackColor
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue