1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-05-12 12:00:14 +00:00

Fix for the inclusion of "DEVELOPMENT BUILD".

This commit is contained in:
Cory Smith 2022-09-10 04:34:55 -05:00
parent a9b205bd63
commit 0ad34f9d44

View file

@ -5207,8 +5207,12 @@ FUNCTION ide2 (ignore)
IF menu$(m, s) = "#About..." THEN
helpabout:
PCOPY 2, 0
m$ = "QB64 Version " + Version$ + CHR$(10) + DevChannel$
IF LEN(AutoBuildMsg$) THEN m$ = m$ + CHR$(10) + AutoBuildMsg$
m$ = "QB64 Version " + Version$ '+ CHR$(10) + DevChannel$
IF LEN(AutoBuildMsg$) THEN
m$ = m$ + CHR$(10) + AutoBuildMsg$
ELSE
m$ = m$ + CHR$(10) + DevChannel$
END IF
result = idemessagebox("About", m$, "")
PCOPY 3, 0: SCREEN , , 3, 0
GOTO ideloop