Browse Source

Do not remove .rc extension from resource path to prevent expansion to full path assuming it's a directory if a folder with the same name exists in the same folder as the resource file

Joakim Hentula 3 years ago
parent
commit
28f440dd9e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main.cpp

+ 1 - 1
src/main.cpp

@@ -1562,7 +1562,7 @@ bool parse_build_flags(Array<String> args) {
 									bad_flags = true;
 									break;
 								}
-								build_context.resource_filepath = substring(path, 0, string_extension_position(path));
+								build_context.resource_filepath = path;
 								build_context.has_resource = true;
 							} else {
 								gb_printf_err("Invalid -resource path, got %.*s\n", LIT(path));