default tabstops were off by 1.

This commit is contained in:
Kelvin Sherlock 2019-01-08 20:33:38 -05:00
parent d3addc3050
commit d77291a0c0
1 changed files with 5 additions and 5 deletions

10
vt100.c
View File

@ -100,11 +100,11 @@ void vt100_init(unsigned flags)
LNM = flags & vtLNM; LNM = flags & vtLNM;
} }
tabs[0] = 0x8080; tabs[0] = 0x0100;
tabs[1] = 0x8080; tabs[1] = 0x0101;
tabs[2] = 0x8080; tabs[2] = 0x0101;
tabs[3] = 0x8080; tabs[3] = 0x0101;
tabs[4] = 0x0080; tabs[4] = 0x0101;
parms[0] = 0; parms[0] = 0;
parm_count = 0; parm_count = 0;