浏览代码

Removed extra division by format channels causing sounds to get halved.

(cherry picked from commit e630591aeafd164d9cb83508462ff2fac55aa6d5)
Theis Egeberg 6 年之前
父节点
当前提交
a2cf479f07
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      editor/import/resource_importer_wav.cpp

+ 2 - 2
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;
 			}
 		}