mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
- Fixed the back-space-handling in ConioWriteConsole.
svn path=/trunk/; revision=10673
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user