mirror of https://github.com/godotengine/godot
WAV: Add missing break on `get_length()`
This commit is contained in:
parent
a1acd38c35
commit
703c31fb40
|
|
@ -560,6 +560,7 @@ double AudioStreamWAV::get_length() const {
|
|||
qoa_desc desc = { 0, 0, 0, { { { 0 }, { 0 } } } };
|
||||
qoa_decode_header((uint8_t *)data + DATA_PAD, data_bytes, &desc);
|
||||
len = desc.samples * desc.channels;
|
||||
break;
|
||||
}
|
||||
|
||||
if (stereo) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue