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

Minor fix to settings output.

This commit is contained in:
FellippeHeitor 2016-06-26 00:37:08 -03:00
parent 7cf18f13ad
commit 5b7411a583
2 changed files with 3 additions and 3 deletions

View file

@ -3,5 +3,5 @@ DIM SHARED BuildNum AS STRING
Version$ = "1.000"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
BuildNum$ = "20160625/24"
BuildNum$ = "20160625/25"

View file

@ -12314,8 +12314,8 @@ FUNCTION ParseCMDLineArgs$ ()
PRINT "INVALID SETTINGS SWITCH: "; token$
PRINT
PRINT "VALID SWITCHES:"
PRINT " debuginfo=true/false (Embed C++ debug info into .EXE)"
PRINT " exewithsource=true/false (Save .EXE in the source folder)"
PRINT " -s:debuginfo=true/false (Embed C++ debug info into .EXE)"
PRINT " -s:exewithsource=true/false (Save .EXE in the source folder)"
SYSTEM
END SELECT
CASE "-g" 'non-GUI environment (uses $CONSOLE:ONLY)