[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:
Sir Richard 2010-02-09 01:46:01 +00:00
parent fa51458191
commit 68410c584a
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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