diff options
author | André Nusser <anusser@mpi-inf.mpg.de> | 2021-02-13 11:42:11 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-22 11:21:54 +0200 |
commit | bbfd9c379044e140cf03d00c27a3e695678d5f50 (patch) | |
tree | 084fec8f14b054336a26ffbb859b311138d3bdf8 /src/instrument.cc | |
parent | a095aef4f9d2fe0584eeadca85039dbc838355ed (diff) |
Initial compiling version of sample selection with position.
Diffstat (limited to 'src/instrument.cc')
-rw-r--r-- | src/instrument.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/instrument.cc b/src/instrument.cc index b7bcdd9..ac6aa28 100644 --- a/src/instrument.cc +++ b/src/instrument.cc @@ -54,12 +54,13 @@ bool Instrument::isValid() const return this == magic; } -const Sample* Instrument::sample(level_t level, size_t pos) +// FIXME: very bad variable naming of parameters +const Sample* Instrument::sample(level_t level, float position , std::size_t pos) { if(version >= VersionStr("2.0")) { // Version 2.0 - return sample_selection.get(level * mod, pos); + return sample_selection.get(level * mod, position, pos); } else { |