1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-10 00:45:13 +00:00

Fix the Beginning C++ message being printed when using the IDE

This was overlooked in #258, previously this printing was being skipped
over via a check of idemode, but after changing where it was located so
it only prints once it now runs when using the IDE, which screwed up the
drawing of the IDE screen.

The simple fix is to check for idemode before doing the printing, which
is effectively what it was doing before anyway.

Fixes: #266
This commit is contained in:
Matthew Kilgore 2022-11-27 12:39:12 -05:00
parent dbd18aeae1
commit 816126be08

View file

@ -1226,7 +1226,7 @@ file$ = f$
fullrecompile:
IF NOT QuietMode THEN
IF idemode = 0 AND NOT QuietMode THEN
PRINT
PRINT "Beginning C++ output from QB64 code... "
END IF