From f4b5658765c56fb3cc8840c330bdb521d1150784 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 12 Nov 2002 19:08:23 +0000 Subject: [PATCH] enabled the cr lf translation again Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@494 --- src/dos/dev_con.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dos/dev_con.h b/src/dos/dev_con.h index f60c0412..0e077e67 100644 --- a/src/dos/dev_con.h +++ b/src/dos/dev_con.h @@ -41,8 +41,8 @@ bool device_CON::Read(Bit8u * data,Bit16u * size) { switch(reg_al) { case 13: data[count++]=0x0D; -// if (*size>count) data[count++]=0x0A; -// else cache=0x0A; + if (*size>count) data[count++]=0x0A; + else cache=0x0A; *size=count; reg_ax=oldax; return true;