From 504ad63907f2d94c532cb1d53275709cf486bbed Mon Sep 17 00:00:00 2001 From: Martin Haye Date: Sun, 10 Jul 2016 17:37:55 -0700 Subject: [PATCH] Removed support for ESC in inputString - it was for Andrew Hogan's demo, not for Lawless Legends. --- Platform/Apple/virtual/src/font/fontEngine.s | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Platform/Apple/virtual/src/font/fontEngine.s b/Platform/Apple/virtual/src/font/fontEngine.s index e084ad4f..9a5f42e4 100644 --- a/Platform/Apple/virtual/src/font/fontEngine.s +++ b/Platform/Apple/virtual/src/font/fontEngine.s @@ -1099,15 +1099,10 @@ In_Key JSR CurPlot ;start with cursor initially displaying JSR In_eChP ;else, get extended char JMP In_Plt In_cTst CMP #$85 - BNE In_cTs2 ;Ctrl-E (extended char) + BNE In_cTs3 ;Ctrl-E (extended char) LDA #3 ;set wait state for extended char STA WaitStat BNE In_Key -In_cTs2 CMP #$9B ;check for ESC key - BNE In_cTs3 ;if ESC then exit app - PLA - PLA - RTS In_cTs3 CMP #$FF BNE In_cTs4 JMP In_DEL ;DELETE key?