mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
\t processing in SCREEN_BUFFER bugged.
Partial fix. svn path=/trunk/; revision=2128
This commit is contained in:
parent
d87b450266
commit
7034b49d22
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: conio.c,v 1.21 2001/07/31 20:28:43 ea Exp $
|
||||
/* $Id: conio.c,v 1.22 2001/07/31 20:47:44 ea Exp $
|
||||
*
|
||||
* reactos/subsys/csrss/api/conio.c
|
||||
*
|
||||
|
@ -293,7 +293,7 @@ NTSTATUS CsrpWriteConsole( PCSRSS_SCREEN_BUFFER Buff, CHAR *Buffer, DWORD Length
|
|||
break;
|
||||
/* --- TAB --- */
|
||||
case '\t':
|
||||
CsrpWriteConsole(Buff, " ", 8, Attrib);
|
||||
CsrpWriteConsole(Buff, " ", (8 - (Buff->CurrentX % 8)), Attrib);
|
||||
break;
|
||||
/* --- */
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue