mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix runtime crash due to missing importer's name conversion inside .import files about OGG vorbis sound files
This commit is contained in:
parent
013a457068
commit
e5d55e35c2
1 changed files with 2 additions and 0 deletions
|
|
@ -436,6 +436,8 @@ bool ProjectConverter3To4::convert() {
|
|||
String &line = source_line.line;
|
||||
if (line.contains("nodes/root_type=\"Spatial\"")) {
|
||||
line = "nodes/root_type=\"Node3D\"";
|
||||
} else if (line == "importer=\"ogg_vorbis\"") {
|
||||
line = "importer=\"oggvorbisstr\"";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue