You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Remove duplicate ERR_PRINTS macro
This commit is contained in:
@@ -371,7 +371,7 @@ bool EditorFileSystem::_test_for_reimport(const String &p_path, bool p_only_impo
|
||||
if (err == ERR_FILE_EOF) {
|
||||
break;
|
||||
} else if (err != OK) {
|
||||
ERR_PRINTS("ResourceFormatImporter::load - '" + p_path + ".import:" + itos(lines) + "' error '" + error_text + "'.");
|
||||
ERR_PRINT("ResourceFormatImporter::load - '" + p_path + ".import:" + itos(lines) + "' error '" + error_text + "'.");
|
||||
memdelete(f);
|
||||
return false; //parse error, try reimport manually (Avoid reimport loop on broken file)
|
||||
}
|
||||
@@ -425,7 +425,7 @@ bool EditorFileSystem::_test_for_reimport(const String &p_path, bool p_only_impo
|
||||
if (err == ERR_FILE_EOF) {
|
||||
break;
|
||||
} else if (err != OK) {
|
||||
ERR_PRINTS("ResourceFormatImporter::load - '" + p_path + ".import.md5:" + itos(lines) + "' error '" + error_text + "'.");
|
||||
ERR_PRINT("ResourceFormatImporter::load - '" + p_path + ".import.md5:" + itos(lines) + "' error '" + error_text + "'.");
|
||||
memdelete(md5s);
|
||||
return false; // parse error
|
||||
}
|
||||
@@ -712,7 +712,7 @@ void EditorFileSystem::_scan_new_dir(EditorFileSystemDirectory *p_dir, DirAccess
|
||||
da->change_dir("..");
|
||||
}
|
||||
} else {
|
||||
ERR_PRINTS("Cannot go into subdir '" + E->get() + "'.");
|
||||
ERR_PRINT("Cannot go into subdir '" + E->get() + "'.");
|
||||
}
|
||||
|
||||
p_progress.update(idx, total);
|
||||
@@ -1747,7 +1747,7 @@ void EditorFileSystem::_reimport_file(const String &p_file) {
|
||||
Error err = importer->import(p_file, base_path, params, &import_variants, &gen_files, &metadata);
|
||||
|
||||
if (err != OK) {
|
||||
ERR_PRINTS("Error importing '" + p_file + "'.");
|
||||
ERR_PRINT("Error importing '" + p_file + "'.");
|
||||
}
|
||||
|
||||
//as import is complete, save the .import file
|
||||
|
||||
Reference in New Issue
Block a user