summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-14 19:00:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-14 19:00:08 +0000
commit19610514166e42a3c860accf576beb3ac1381a42 (patch)
tree2e6d00995428aed7188f7fab774230f01d438b9e /libs/ardour/globals.cc
parenta5674e92712aacae648e8d55ec7b767b6d988542 (diff)
monitor send gets access to the (shared) pannable of the track/bus, thus ensuring that the monitor feed is panned. required a few fixes along the way
git-svn-id: svn://localhost/ardour2/branches/3.0@9731 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 83d0990bf4..7238a1f0e6 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -161,7 +161,8 @@ setup_hardware_optimization (bool try_optimization)
compute_peak = x86_sse_compute_peak;
find_peaks = x86_sse_find_peaks;
apply_gain_to_buffer = x86_sse_apply_gain_to_buffer;
- mix_buffers_with_gain = x86_sse_mix_buffers_with_gain;
+ // mix_buffers_with_gain = x86_sse_mix_buffers_with_gain;
+ mix_buffers_with_gain = default_mix_buffers_with_gain;
mix_buffers_no_gain = x86_sse_mix_buffers_no_gain;
generic_mix_functions = false;