You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector
This commit is contained in:
@@ -313,7 +313,7 @@ void EditorFileDialog::_action_pressed() {
|
||||
|
||||
String fbase=dir_access->get_current_dir();
|
||||
|
||||
DVector<String> files;
|
||||
PoolVector<String> files;
|
||||
for(int i=0;i<item_list->get_item_count();i++) {
|
||||
if (item_list->is_selected(i))
|
||||
files.push_back( fbase.plus_file(item_list->get_item_text(i) ));
|
||||
|
||||
Reference in New Issue
Block a user