1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 01:50:25 +00:00

Properly obeys a click to exit (x button)

This commit is contained in:
FellippeHeitor 2021-07-22 03:04:23 -03:00
parent 231e28c79b
commit 231400f309

View file

@ -6410,6 +6410,8 @@ SUB DebugMode
noFocusMessage = -1
DO 'main loop
IF _EXIT THEN ideexit = 1: GOTO requestQuit
bkpidecy = idecy
WHILE _MOUSEINPUT: idecy = idecy + _MOUSEWHEEL * 3: WEND