From: Arthur Gleckler Date: Fri, 11 Mar 1988 02:54:59 +0000 (+0000) Subject: Fixed screen dimensions by reducing STARBASE_XMAX and STARBASE_YMAX each by one. X-Git-Tag: 20090517-FFI~12875 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ebf4ae2a6f794727abb4194ae3c272b6f855d0a7;p=mit-scheme.git Fixed screen dimensions by reducing STARBASE_XMAX and STARBASE_YMAX each by one. --- diff --git a/v7/src/microcode/sgraph.h b/v7/src/microcode/sgraph.h index b99c91ff5..1e7caaacd 100644 --- a/v7/src/microcode/sgraph.h +++ b/v7/src/microcode/sgraph.h @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/sgraph.h,v 1.1 1987/05/28 00:51:46 jinx Rel $ */ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/sgraph.h,v 1.2 1988/03/11 02:54:59 arthur Rel $ */ #include @@ -48,8 +48,8 @@ MIT in each case. */ #define STARBASE_XMIN -512.0 #define STARBASE_YMIN -384.0 #define STARBASE_ZMIN 0.0 -#define STARBASE_XMAX 512.0 -#define STARBASE_YMAX 384.0 +#define STARBASE_XMAX 511.0 +#define STARBASE_YMAX 383.0 #define STARBASE_ZMAX 0.0 #endif