Sfoglia il codice sorgente

Fix filesystem cache split error

(cherry picked from commit 7f18db9d9d444885005df2edebf7632070fe9e55)
kobewi 2 anni fa
parent
commit
627ddd412e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      editor/editor_file_system.cpp

+ 1 - 1
editor/editor_file_system.cpp

@@ -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;