oops, after switching stuff around back and forth a little on my last

update, I forgot to leave this bit in...  basically, the height calculation
is screwy, and should be fixed, but I'm being lazy about it just now.
This commit is contained in:
lindes 2001-08-28 01:03:31 +00:00
parent 19e4b032cd
commit 9f5cfbd71d
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
* Copyright 1996 by David Lindes
* all right reserved.
*
* Version information: $Id: ttyload.c,v 1.21 2001-08-28 01:00:31 lindes Exp $
* Version information: $Id: ttyload.c,v 1.22 2001-08-28 01:03:31 lindes Exp $
*
*/
@ -33,7 +33,7 @@
#define MINROWS (HEIGHTPAD + 6)
#define MINCOLS (WIDTHPAD + 6)
char *c="$Id: ttyload.c,v 1.21 2001-08-28 01:00:31 lindes Exp $";
char *c="$Id: ttyload.c,v 1.22 2001-08-28 01:03:31 lindes Exp $";
char strbuf[BUFSIZ],
*optstring = "i:hvmr:c:",
@ -190,7 +190,7 @@ int main(argc, argv, envp)
}
intsecs = MAX(1, intsecs); /* must be positive */
height = rows - HEIGHTPAD;
height = rows - HEIGHTPAD - 1;
width = cols - WIDTHPAD;
clocks = MAX(width/intsecs, width/CLOCKWIDTH);
clockpad = (width / clocks) - CLOCKWIDTH;