mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Missing .rc error message
This commit is contained in:
+1
-1
@@ -395,7 +395,7 @@ bool parse_build_flags(Array<String> args) {
|
|||||||
path = string_trim_whitespace(path);
|
path = string_trim_whitespace(path);
|
||||||
if (is_import_path_valid(path)) {
|
if (is_import_path_valid(path)) {
|
||||||
if(!string_ends_with(path, str_lit(".rc"))) {
|
if(!string_ends_with(path, str_lit(".rc"))) {
|
||||||
gb_printf_err("Invalid -resource path, got %.*s\n", LIT(path));
|
gb_printf_err("Invalid -resource path, missing .rc\n", LIT(path));
|
||||||
bad_flags = true;
|
bad_flags = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user