You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Fix filesystem cache split error
This commit is contained in:
@@ -262,7 +262,7 @@ void EditorFileSystem::_scan_filesystem() {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
Vector<String> split = l.split("::");
|
Vector<String> split = l.split("::");
|
||||||
ERR_CONTINUE(split.size() != 9);
|
ERR_CONTINUE(split.size() < 9);
|
||||||
String name = split[0];
|
String name = split[0];
|
||||||
String file;
|
String file;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user