From 66503b0653dbe0750d18d143905307a287ffcaf7 Mon Sep 17 00:00:00 2001 From: Jukka Heinonen Date: Mon, 8 Apr 2002 20:11:47 +0000 Subject: [PATCH] Converted "read standard input with echo" interrupt service to use common DOSVM console input routine and made the service really echo. --- dlls/winedos/int21.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winedos/int21.c b/dlls/winedos/int21.c index 40192d64c2d..d6ff053ef2c 100644 --- a/dlls/winedos/int21.c +++ b/dlls/winedos/int21.c @@ -86,8 +86,8 @@ void WINAPI DOSVM_Int21Handler( CONTEXT86 *context ) case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */ TRACE("DIRECT CHARACTER INPUT WITH ECHO\n"); - AL_reg(context) = CONSOLE_GetCharacter(); - /* FIXME: no echo */ + DOSVM_Int16ReadChar(&AL_reg(context), NULL, FALSE); + DOSVM_PutChar(AL_reg(context)); break; case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */ -- 2.11.4.GIT