1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00

[minor] Fix the status message for $EXEICON.

This commit is contained in:
FellippeHeitor 2017-04-29 00:34:16 -03:00
parent 086787cae4
commit d3fd0be2a4

View file

@ -3246,7 +3246,7 @@ DO
IF _FILEEXISTS(ExeIconFile$) = 0 THEN
IF LEN(IconPath$) THEN
a$ = "File '" + MID$(ExeIconFile$, LEN(IconPath$) + 2) + "' not found": GOTO errmes
a$ = "File '" + MID$(ExeIconFile$, LEN(IconPath$) + 1) + "' not found": GOTO errmes
ELSE
a$ = "File '" + ExeIconFile$ + "' not found": GOTO errmes
END IF