From d6e27bd439188389c27f2952751d9142670a9398 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 24 Aug 2016 22:46:36 +0200 Subject: fix copy/paste mistake --- libs/ardour/fluid_synth.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/fluid_synth.cc b/libs/ardour/fluid_synth.cc index 3c013dd00d..333738766a 100644 --- a/libs/ardour/fluid_synth.cc +++ b/libs/ardour/fluid_synth.cc @@ -93,9 +93,9 @@ FluidSynth::load_sf2 (const std::string& fn) */ float l[1024]; float r[1024]; - fluid_synth_all_notes_off (self->synth, -1); - fluid_synth_all_sounds_off (self->synth, -1); - fluid_synth_write_float (self->synth, 1024, l, 0, 1, r, 0, 1); + fluid_synth_all_notes_off (_synth, -1); + fluid_synth_all_sounds_off (_synth, -1); + fluid_synth_write_float (_synth, 1024, l, 0, 1, r, 0, 1); return true; } -- cgit v1.2.3