1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add renaming of PDB files to avoid blocking them

This commit is contained in:
DmitriySalnikov
2024-01-11 15:33:35 +03:00
parent f6a78f83aa
commit b73e740786
18 changed files with 411 additions and 77 deletions

View File

@@ -741,7 +741,7 @@ String OS_Unix::get_locale() const {
return locale;
}
Error OS_Unix::open_dynamic_library(const String &p_path, void *&p_library_handle, bool p_also_set_library_path, String *r_resolved_path) {
Error OS_Unix::open_dynamic_library(const String &p_path, void *&p_library_handle, bool p_also_set_library_path, String *r_resolved_path, bool p_generate_temp_files) {
String path = p_path;
if (FileAccess::exists(path) && path.is_relative_path()) {