From 6a3896e93b355b5925d803c77e000fb31afc54c0 Mon Sep 17 00:00:00 2001 From: Maikiwi Date: Sun, 13 Feb 2022 21:18:25 -0800 Subject: [PATCH] less function calls -> placeholder lines --- src/renderer/audio/audio.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderer/audio/audio.js b/src/renderer/audio/audio.js index cb655c19..8a972a93 100644 --- a/src/renderer/audio/audio.js +++ b/src/renderer/audio/audio.js @@ -192,7 +192,7 @@ var CiderAudio = { } else { // If only vibrant bass is enabled CiderAudio.vibrantbass_h2_1(true) - CiderAudio.llpw_h2_2(false, 0) + //CiderAudio.llpw_h2_2(false, 0) if (app.cfg.audio.spatial) {CiderAudio.audioNodes.spatialNode.output.connect(CiderAudio.audioNodes.vibrantbassNode[0]);} else {CiderAudio.audioNodes.gainNode.connect(CiderAudio.audioNodes.vibrantbassNode[0]);} console.log("[Cider][Audio] Only vibrant bass is enabled") @@ -200,15 +200,15 @@ var CiderAudio = { } else { // If vibrant bass is disabled if (app.cfg.audio.ciderPPE) { // If CAP is enabled & vibrant bass is disabled - CiderAudio.vibrantbass_h2_1(false) + //CiderAudio.vibrantbass_h2_1(false) CiderAudio.llpw_h2_2(true, 1) if (app.cfg.audio.spatial) {CiderAudio.audioNodes.spatialNode.output.connect(CiderAudio.audioNodes.llpw[0]);} else {CiderAudio.audioNodes.gainNode.connect(CiderAudio.audioNodes.llpw[0]);} console.log("[Cider][Audio] CAP is enabled & vibrant bass is disabled") } else { // If CAP & vibrant bass is disabled - CiderAudio.vibrantbass_h2_1(false) - CiderAudio.llpw_h2_2(false, 0) + //CiderAudio.vibrantbass_h2_1(false) + //CiderAudio.llpw_h2_2(false, 0) if (app.cfg.audio.spatial) {CiderAudio.audioNodes.spatialNode.output.connect(CiderAudio.audioNodes.audioBands[0]);} else {CiderAudio.audioNodes.gainNode.connect(CiderAudio.audioNodes.audioBands[0]);} console.log("[Cider][Audio] CAP & vibrant bass is disabled")