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

Fixes improper navigation (open/save dialogs).

This commit is contained in:
FellippeHeitor 2021-07-22 03:07:01 -03:00
parent 2fc0515d2e
commit 4efd95201d

View file

@ -11334,7 +11334,7 @@ FUNCTION idezchangepath$ (path$, newpath$)
END IF
'change drive
IF LEN(newpath$) = 2 AND RIGHT$(newpath$, 1) = ":" THEN
idezchangepath$ = newpath$ + "\"
idezchangepath$ = newpath$
EXIT FUNCTION
END IF
idezchangepath$ = path$ + "\" + newpath$