mirror of
https://github.com/ksherlock/marlene.git
synced 2024-12-21 22:29:28 +00:00
default tabstops were off by 1.
This commit is contained in:
parent
d3addc3050
commit
d77291a0c0
10
vt100.c
10
vt100.c
@ -100,11 +100,11 @@ void vt100_init(unsigned flags)
|
||||
LNM = flags & vtLNM;
|
||||
}
|
||||
|
||||
tabs[0] = 0x8080;
|
||||
tabs[1] = 0x8080;
|
||||
tabs[2] = 0x8080;
|
||||
tabs[3] = 0x8080;
|
||||
tabs[4] = 0x0080;
|
||||
tabs[0] = 0x0100;
|
||||
tabs[1] = 0x0101;
|
||||
tabs[2] = 0x0101;
|
||||
tabs[3] = 0x0101;
|
||||
tabs[4] = 0x0101;
|
||||
|
||||
parms[0] = 0;
|
||||
parm_count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user