diff options
| author | gingerBill <bill@gingerbill.org> | 2022-01-12 20:28:11 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-01-12 20:28:11 +0000 |
| commit | 3def94505eb72dee3ce46047d8e7820cad8d0c8f (patch) | |
| tree | 9ca546d39831fadbcf9ca7302ed38c19604322a9 /src/main.cpp | |
| parent | e30f16b1f3fa5630c43c62f5602e26aa8d55e53b (diff) | |
Add `dynamic` to error message for `-build-mode`
Diffstat (limited to 'src/main.cpp')
| -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 9b2c5d5de..35b3d713b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1280,7 +1280,7 @@ bool parse_build_flags(Array<String> args) { } else { gb_printf_err("Unknown build mode '%.*s'\n", LIT(str)); gb_printf_err("Valid build modes:\n"); - gb_printf_err("\tdll, shared\n"); + gb_printf_err("\tdll, shared, dynamic\n"); gb_printf_err("\tobj, object\n"); gb_printf_err("\texe\n"); gb_printf_err("\tasm, assembly, assembler\n"); |