diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-10-01 11:29:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-01 11:29:45 +0100 |
| commit | 9f813a6263629cdae3b33cd027314f9f4a0fefb5 (patch) | |
| tree | 00c384287b95f38e58fa280f66f8c05b6713abb7 | |
| parent | ab54ad3a7501bed670ae4ff57908c1782b567d74 (diff) | |
| parent | 5d57fe77be01800683b0cbd1eea7661a8284ad4d (diff) | |
Merge pull request #4331 from olimpiu/patch-1
Fixed confusing (and incorrect) warning
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 82f398d5b..64ba76f99 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1408,7 +1408,7 @@ gb_internal bool parse_build_flags(Array<String> args) { build_context.terse_errors = true; break; 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.terse_errors = false; break; |