From 8deeb2c59e50c4221dcf588e9670b63f4e26e729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20M=C3=BChlstrasser?= Date: Mon, 23 Feb 2015 23:07:00 +0100 Subject: [PATCH] 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. --- libsrc/osic1p/osic1p.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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