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

Fixes console colors during compilation (*nix).

Turns out the color palette isn't really the same as in Windows.
This commit is contained in:
Fellippe Heitor 2021-02-08 07:56:43 -03:00
parent 346b50d80a
commit 8c1b05f428

View file

@ -12902,7 +12902,13 @@ IF idemode THEN
END IF END IF
'non-ide mode output 'non-ide mode output
PRINT PRINT
IF NOT MonochromeLoggingMode THEN COLOR 4 IF NOT MonochromeLoggingMode THEN
IF INSTR(_OS$, "WIN") THEN
COLOR 4
ELSE
COLOR 9
END IF
END IF
PRINT a$ PRINT a$
IF NOT MonochromeLoggingMode THEN COLOR 7 IF NOT MonochromeLoggingMode THEN COLOR 7
FOR i = 1 TO LEN(linefragment) FOR i = 1 TO LEN(linefragment)