1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 12:35:13 +00:00

Fix never ending lines when down arrow kept being pressed

The issue was introduced after CTRL+UP/DOWN was implemented.
This commit is contained in:
FellippeHeitor 2016-01-14 13:53:54 -02:00
parent fcf9334581
commit e2a202084a

View file

@ -2769,7 +2769,7 @@ DO
ELSE ELSE
GOSUB selectcheck GOSUB selectcheck
idecy = idecy + 1 idecy = idecy + 1
IF idecy < idesy THEN idecy = idesy IF idecy > iden THEN idecy = iden
GOTO specialchar GOTO specialchar
END IF END IF
END IF END IF