aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/TII.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TII.cpp b/src/TII.cpp
index 8a8bd86..4ed1a91 100644
--- a/src/TII.cpp
+++ b/src/TII.cpp
@@ -202,11 +202,11 @@ int TII::process(Buffer* dataIn, Buffer* dataOut)
// setting exactly the same phase of the signal for lower adjacent
// frequency
if (m_enabled_carriers[i]) {
- out[i] = m_conf.old_variant ? in[i+1] : in[i];
+ out[i] = (m_conf.old_variant ? in[i+1] : in[i])/((float)48.0);
}
if (m_enabled_carriers[i+1]) {
- out[i+1] = in[i+1];
+ out[i+1] = in[i+1]/((float)48.0);
}
}
}