diff options
Diffstat (limited to 'src/drumkitloader.h')
-rw-r--r-- | src/drumkitloader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drumkitloader.h b/src/drumkitloader.h index 01b4f06..f99f439 100644 --- a/src/drumkitloader.h +++ b/src/drumkitloader.h @@ -51,7 +51,7 @@ class DrumKitLoader public: //! The constrcutor starts the loader thread. DrumKitLoader(Settings& settings, DrumKit& kit, AudioInputEngine& ie, - std::array<CHResampler, 64>& resampler); + Resamplers& resamplers); //! The destructor signals the thread to stop and waits to merge before //! returning (ie. deleting the object will garantuee that the thread has @@ -89,6 +89,6 @@ protected: SettingsGetter getter; DrumKit& kit; AudioInputEngine& ie; - std::array<CHResampler, 64>& resampler; + Resamplers& resamplers; MemChecker memchecker; }; |