fixed int10_teletype output when displaying a tab
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1264
This commit is contained in:
parent
b5ddbf0034
commit
4c9fc85b6c
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue