Explorar el Código

EditorPaths: Fix creating 'export_templates' folder.

Rémi Verschelde hace 3 años
padre
commit
73c11ab31a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      editor/editor_paths.cpp

+ 2 - 2
editor/editor_paths.cpp

@@ -153,8 +153,8 @@ EditorPaths::EditorPaths() {
 			}
 		}
 
-		if (!dir->dir_exists("templates")) {
-			dir->make_dir("templates");
+		if (!dir->dir_exists("export_templates")) {
+			dir->make_dir("export_templates");
 		}
 	}