浏览代码

Fix OGG conversion (close #495)

Nicolas Cannasse 6 年之前
父节点
当前提交
2a69ba0350
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hxd/res/FileTree.hx

+ 1 - 1
hxd/res/FileTree.hx

@@ -143,7 +143,7 @@ class FileTree {
 			if( options.compressAsMp3 )
 				fs.addConvert(new hxd.fs.Convert.ConvertWAV2MP3());
 			else if( options.compressSounds )
-				fs.addConvert(new hxd.fs.Convert.ConvertWAV2MP3());
+				fs.addConvert(new hxd.fs.Convert.ConvertWAV2OGG());
 			fs.tmpDir = options.tmpDir;
 			fs.onConvert = function(f) Sys.println("Converting " + f.path);
 			embedRec(tree, path, fs);