1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Rename path to paths

This commit is contained in:
sanikoyes
2016-03-18 18:26:02 +08:00
parent 174b9a5f9e
commit e13e343c9c
2 changed files with 4 additions and 4 deletions

View File

@@ -60,11 +60,11 @@ void ResourcePreloaderEditor::_notification(int p_what) {
}
}
void ResourcePreloaderEditor::_files_load_request(const Vector<String>& p_path) {
void ResourcePreloaderEditor::_files_load_request(const Vector<String>& p_paths) {
for(int i=0;i<p_path.size();i++) {
for(int i=0;i<p_paths.size();i++) {
String path = p_path[i];
String path = p_paths[i];
RES resource;
resource = ResourceLoader::load(path);