From f88b9bf29844bc1600d8dbe4e2ae769ed26681a4 Mon Sep 17 00:00:00 2001 From: Martin Haye Date: Mon, 4 Jul 2016 08:55:29 -0700 Subject: [PATCH] Fix bug where hitting enter on New/Load screen hid the text. --- Platform/Apple/virtual/src/plasma/diskops.pla | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Platform/Apple/virtual/src/plasma/diskops.pla b/Platform/Apple/virtual/src/plasma/diskops.pla index f5deb685..9d603869 100644 --- a/Platform/Apple/virtual/src/plasma/diskops.pla +++ b/Platform/Apple/virtual/src/plasma/diskops.pla @@ -288,14 +288,13 @@ def _newOrLoadGame() newGame(); return 1 fin - home() - ^$c053 - ^$25 = 20 - puts("\n N)ew game, or L)oad last game? ") while TRUE + home() + ^$c053 + ^$25 = 20 + puts("\n N)ew game, or L)oad last game? ") key = rdkey() & $7F home() - ^$c052 if key > $60; key = key - $20; fin if key == 'N' newGame(); return 1