diff --git a/VERSION b/VERSION index abbd7c1..37051b3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v2.3.09 \ No newline at end of file +v2.3.10 \ No newline at end of file diff --git a/lib/strings.asm b/lib/strings.asm index cd4b4f7..810d196 100644 --- a/lib/strings.asm +++ b/lib/strings.asm @@ -285,13 +285,15 @@ STR_INPUT SUBROUTINE lda #$00 sta (R2),y - ; turn off cursor - ldy $d3 - lda ($d1),y - ora #%01111111 + ; turn off cursor + sei + ldy $d3 ; y pos of cursor + lda $ce ; character under cursor + and #%01111111 sta ($d1),y lda #$ff sta $cc + cli rts diff --git a/source/app.d b/source/app.d index a493d77..08e682e 100644 --- a/source/app.d +++ b/source/app.d @@ -27,7 +27,7 @@ string listfile=""; * Version */ -string compiler_version = "v2.3.09"; +string compiler_version = "v2.3.10"; /** * Application entry point