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.h | |
parent | a095aef4f9d2fe0584eeadca85039dbc838355ed (diff) |
Initial compiling version of sample selection with position.
Diffstat (limited to 'src/instrument.h')
-rw-r--r-- | src/instrument.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/instrument.h b/src/instrument.h index c06ccdc..89918de 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -49,7 +49,8 @@ public: Instrument(Settings& settings, Random& rand); ~Instrument(); - const Sample* sample(level_t level, size_t pos); + // FIXME: variable naming + const Sample* sample(level_t level, float position, std::size_t pos); std::size_t getID() const; const std::string& getName() const; |