mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-02-23 15:28:59 +00:00
Replaced jsr get_key_ip65 with jsr get_key.
- The C64 variant already used get_key and I don't see a reason why the A2 has different requirements when it comes to the question when it is necessary to call ip65_process. - On the A2 get_key does display a cursor while get_key_ip65 does not. However get_filtered_input is used to get a string of characters. This is exactly the scenario asking for a cursor.
This commit is contained in:
parent
fccc7e2dc2
commit
9dd014cded
@ -5,9 +5,8 @@
|
||||
.export filter_url
|
||||
.export filter_number
|
||||
|
||||
.import get_key_ip65
|
||||
.import get_key
|
||||
.import print_a
|
||||
.import print_hex
|
||||
|
||||
.include "zeropage.inc"
|
||||
.include "../inc/common.i"
|
||||
@ -35,7 +34,7 @@ get_filtered_input:
|
||||
|
||||
; Wait for a character.
|
||||
@input_get:
|
||||
jsr get_key_ip65
|
||||
jsr get_key
|
||||
; convert to standard ASCII by turning off high bit
|
||||
and #$7f
|
||||
sta LASTCHAR
|
||||
|
Loading…
x
Reference in New Issue
Block a user