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.
Real_Release = (0-->1)&$03ff;
- Width = $22-->0;
- Height = $24-->0;
+ Width = $21->0;
+ Height = $20->0;
main_menu();
while (true) {