From 4c9fc85b6cc0cff54a5e2cf69dbeffa0497e92d8 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 24 Sep 2003 19:33:26 +0000 Subject: [PATCH] fixed int10_teletype output when displaying a tab Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1264 --- src/ints/int10_char.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ints/int10_char.cpp b/src/ints/int10_char.cpp index a1723891..26e755b0 100644 --- a/src/ints/int10_char.cpp +++ b/src/ints/int10_char.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: int10_char.cpp,v 1.18 2003-09-09 19:25:04 qbix79 Exp $ */ +/* $Id: int10_char.cpp,v 1.19 2003-09-24 19:33:26 qbix79 Exp $ */ /* Character displaying moving functions */ @@ -378,7 +378,7 @@ void INT10_TeletypeOutput(Bit8u chr,Bit8u attr,bool showattr) { INT10_TeletypeOutput(' ',attr,showattr); cur_row=CURSOR_POS_ROW(page); cur_col=CURSOR_POS_COL(page); - } while(cur_col%8==0); + } while(cur_col%8); break; default: /* Draw the actual Character */