From: Stephan Mühlstrasser Date: Mon, 23 Feb 2015 22:07:00 +0000 (+0100) Subject: Match screen dimensions as in BASIC. X-Git-Tag: V2.15~20^2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8deeb2c59e50c4221dcf588e9670b63f4e26e729;p=cc65 Match screen dimensions as in BASIC. Experiments show that under BASIC by default 25 rows by 24 columns are used. 24 columns is also the width that is fully displayed on a real C1P on the monitor. conio now matches that now. --- diff --git a/libsrc/osic1p/osic1p.inc b/libsrc/osic1p/osic1p.inc index b5d48f32e..d209b258d 100644 --- a/libsrc/osic1p/osic1p.inc +++ b/libsrc/osic1p/osic1p.inc @@ -6,5 +6,5 @@ KBD := $DF00 ; Polled keyboard register ; Other definitions VIDEORAMSIZE = $0400 ; Size of C1P video RAM (1 kB) -SCR_WIDTH = $19 ; Screen width +SCR_WIDTH = $18 ; Screen width SCR_HEIGHT = $19 ; Screen height