summaryrefslogtreecommitdiff
path: root/src/instrument.cc
diff options
context:
space:
mode:
authorSander Vocke <sandervocke@gmail.com>2024-07-28 15:30:28 +0200
committerSander Vocke <sandervocke@gmail.com>2024-07-28 15:30:28 +0200
commit7e4886d67673e2f9543dd0f81a41734721c16e29 (patch)
tree840339da6ba1c3b1fd5d2c519011969252b4f53e /src/instrument.cc
parentfaaaf5d328429fd2c3f38131f7a874d056761f3f (diff)
Experimental changes, kind of works
Diffstat (limited to 'src/instrument.cc')
-rw-r--r--src/instrument.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/instrument.cc b/src/instrument.cc
index 6556fb1..90665dd 100644
--- a/src/instrument.cc
+++ b/src/instrument.cc
@@ -31,10 +31,10 @@
#include "sample.h"
Instrument::Instrument(Settings& settings, Random& rand, float openness_choke_threshold)
- : settings(settings)
+ : openness_choke_threshold(openness_choke_threshold)
+ , settings(settings)
, rand(rand)
, sample_selection(settings, rand, powerlist)
- , openness_choke_threshold(openness_choke_threshold)
{
DEBUG(instrument, "new %p\n", this);
mod = 1.0;