mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
- Fixed the back-space-handling in ConioWriteConsole.
svn path=/trunk/; revision=10673
This commit is contained in:
parent
2f4838080b
commit
c56daa8b92
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: conio.c,v 1.13 2004/08/24 17:25:17 navaraf Exp $
|
||||
/* $Id: conio.c,v 1.14 2004/08/25 10:37:14 hbirr Exp $
|
||||
*
|
||||
* reactos/subsys/csrss/win32csr/conio.c
|
||||
*
|
||||
|
@ -405,7 +405,7 @@ ConioWriteConsole(PCSRSS_CONSOLE Console, PCSRSS_SCREEN_BUFFER Buff,
|
|||
continue;
|
||||
}
|
||||
/* --- BS --- */
|
||||
else if (Buffer[i] == '\n')
|
||||
else if (Buffer[i] == '\b')
|
||||
{
|
||||
/* Only handle BS if we're not on the first pos of the first line */
|
||||
if (0 != Buff->CurrentX || Buff->ShowY != Buff->CurrentY)
|
||||
|
|
Loading…
Reference in a new issue