Browse Source

Merge pull request #4331 from olimpiu/patch-1

Fixed confusing (and incorrect) warning
gingerBill 10 months ago
parent
commit
9f813a6263
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main.cpp

+ 1 - 1
src/main.cpp

@@ -1408,7 +1408,7 @@ gb_internal bool parse_build_flags(Array<String> args) {
 							build_context.terse_errors = true;
 							build_context.terse_errors = true;
 							break;
 							break;
 						case BuildFlag_VerboseErrors:
 						case BuildFlag_VerboseErrors:
-							gb_printf_err("-verbose-errors is not the default, -terse-errors can now disable it\n");
+							gb_printf_err("-verbose-errors is now the default, -terse-errors can disable it\n");
 							build_context.hide_error_line = false;
 							build_context.hide_error_line = false;
 							build_context.terse_errors = false;
 							build_context.terse_errors = false;
 							break;
 							break;