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

Makes colored output default for command line compilation.

This commit is contained in:
FellippeHeitor 2021-01-13 23:54:20 -03:00
parent ec4b4d436b
commit 2ce9afe739

View file

@ -12577,8 +12577,8 @@ FUNCTION ParseCMDLineArgs$ ()
PRINT
PRINT "Options:"
PRINT " <file> Source file to load" ' '80 columns
PRINT " -v Verbose mode"
PRINT " -vc Verbose mode with color"
PRINT " -v Verbose mode (colorized)"
PRINT " -vc Verbose mode (no color)"
PRINT " -q Quiet mode"
PRINT " -c Compile instead of edit"
PRINT " -x Compile instead of edit and output the result to the"
@ -12596,7 +12596,8 @@ FUNCTION ParseCMDLineArgs$ ()
CASE "-v" 'Verbose mode
VerboseMode = -1
cmdlineswitch = -1
IF LCASE$(token$) = "-vc" THEN ColorVerboseMode = -1
ColorVerboseMode = -1
IF LCASE$(token$) = "-vc" THEN ColorVerboseMode = 0
CASE "-q" 'Quiet mode
QuietMode = -1
cmdlineswitch = -1