Fix filesystem cache split error

(cherry picked from commit 7f18db9d9d)
This commit is contained in:
kobewi 2023-06-16 13:12:56 +02:00 committed by Yuri Sizov
parent 22d3fa7292
commit 627ddd412e

View File

@ -262,7 +262,7 @@ void EditorFileSystem::_scan_filesystem() {
} else {
Vector<String> split = l.split("::");
ERR_CONTINUE(split.size() != 9);
ERR_CONTINUE(split.size() < 9);
String name = split[0];
String file;