From fb11ffbf3402b8fa44a19d3534f76a13ba0df8a4 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 30 May 2019 21:25:09 -0700 Subject: [PATCH] Better to get Width and Height from $21 and $20 of the story file header. The locations of $22 and $24 in the story file header are for screen width and screen height. This is often synonymous with columns and rows, but is not guaranteed. It is better to get these numbers from $21 and $20 which are explicitly stated to be for screen columns and screen rows. --- kitten.inf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitten.inf b/kitten.inf index 5227273..89ce7e3 100644 --- a/kitten.inf +++ b/kitten.inf @@ -115,8 +115,8 @@ Global Real_Release = 0; Real_Release = (0-->1)&$03ff; - Width = $22-->0; - Height = $24-->0; + Width = $21->0; + Height = $20->0; main_menu(); while (true) { -- 2.31.1