Skip to content
Snippets Groups Projects
Verified Commit 5576dd93 authored by leprob001's avatar leprob001
Browse files

fix: Empirical shift is no longer multiplied by -1 on track calculation

parent c5e4ab7f
No related branches found
No related tags found
No related merge requests found
368
369
......@@ -66,7 +66,7 @@ end
%% Use empirical shift if selected
if pTrackingParameter.useEmpiricalShift
pToaData.toa = pToaData.toa + -1 * pToaData.empiricalShift;
pToaData.toa = pToaData.toa + pToaData.empiricalShift;
end
%% Prepare data for every sound source
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment