From 5b7411a58341237fbebf58edbf49f2b62afacabc Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sun, 26 Jun 2016 00:37:08 -0300 Subject: [PATCH] Minor fix to settings output. --- source/global/version.bas | 2 +- source/qb64.bas | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/global/version.bas b/source/global/version.bas index 4389e0d61..46ffa262b 100644 --- a/source/global/version.bas +++ b/source/global/version.bas @@ -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" diff --git a/source/qb64.bas b/source/qb64.bas index 6e1c9b82a..ac7e0f838 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -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)