From a2cf479f07d674b4f46eaca20f2ac98fae902077 Mon Sep 17 00:00:00 2001 From: Theis Egeberg Date: Thu, 11 Apr 2019 17:17:33 +0200 Subject: [PATCH] Removed extra division by format channels causing sounds to get halved. (cherry picked from commit e630591aeafd164d9cb83508462ff2fac55aa6d5) --- editor/import/resource_importer_wav.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/import/resource_importer_wav.cpp b/editor/import/resource_importer_wav.cpp index 52dec47343..fdf1103258 100644 --- a/editor/import/resource_importer_wav.cpp +++ b/editor/import/resource_importer_wav.cpp @@ -409,12 +409,12 @@ Error ResourceImporterWAV::import(const String &p_source_file, const String &p_s float amp = Math::abs(ampChannelSum / (float)format_channels); if (!found && amp > limit) { - first = i / format_channels; + first = i; found = true; } if (found && amp > limit) { - last = i / format_channels; + last = i; } }