From 93ebf23a18be09f19263791c6b65633cf287e47b Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Fri, 13 Dec 2002 15:31:31 +0000 Subject: [PATCH] forgot to clear the ansi.esc if an error occured Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@571 --- src/dos/dev_con.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dos/dev_con.h b/src/dos/dev_con.h index ccae558e..c2627367 100644 --- a/src/dos/dev_con.h +++ b/src/dos/dev_con.h @@ -144,6 +144,7 @@ bool device_CON::Write(Bit8u * data,Bit16u * size) { case 'M':/* scrolling UP*/ default: LOG_DEBUG("ANSI: unknown char %c after a esc",data[count]); /*prob () */ + ClearAnsi(); break; } count++;