diff options
author | André Nusser <andre.nusser@googlemail.com> | 2019-10-26 12:43:00 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2019-10-26 12:43:00 +0200 |
commit | 6ad9b9d2ae3341bbd4914f4951070a02d3dd4d2b (patch) | |
tree | 32a71f81fcc65d11a60f779b3633c0436822f94b /src/drumgizmo.cc | |
parent | 33f968de5c88a2f92d79cb9dfa14cc245676a8d5 (diff) |
Fix variable name typo: resamplig -> resampling
Diffstat (limited to 'src/drumgizmo.cc')
-rw-r--r-- | src/drumgizmo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drumgizmo.cc b/src/drumgizmo.cc index e6dbf55..bec3e0f 100644 --- a/src/drumgizmo.cc +++ b/src/drumgizmo.cc @@ -437,7 +437,7 @@ void DrumGizmo::setSamplerate(float samplerate) auto input_fs = settings.drumkit_samplerate.load(); auto output_fs = samplerate; ratio = input_fs / output_fs; - settings.resamplig_recommended.store(ratio != 1.0); + settings.resampling_recommended.store(ratio != 1.0); // TODO: Only reallocate the actual amount of samples needed based on the // ratio and the framesize. |