1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Stop ide() throwing a silent IFC on startup

This commit is contained in:
Luke Ceddia 2016-08-11 21:41:40 +10:00
parent fc05f7d925
commit 3a0c8ea521

View file

@ -1,8 +1,8 @@
FUNCTION ide (ignore)
'Note: ide is a function which optimizes the interaction between the IDE and compiler (ide2)
' by avoiding unnecessary bloat associated with entering the main IDE function 'ide2'
IF ASC(idecommand$) = 3 THEN 'request next line (compiler->ide)
IF idecommand$ <> "" THEN cmd = ASC(idecommand$)
IF cmd = 3 THEN 'request next line (compiler->ide)
IF idecompiledline < iden THEN
IF idecompiledline < idesy OR idecompiledline > idesy + (idewy - 9) THEN 'off screen?
IF _EXIT AND 1 THEN ideexit = 1