1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-19 07:31:15 +00:00

Correct: load -> store.

This commit is contained in:
Thomas Harte 2021-11-22 15:18:12 -05:00
parent 24e2fd4184
commit 6f6e09d200

View File

@ -311,7 +311,7 @@ template <bool is_stereo> class PushLowpass: public LowpassBase<PushLowpass<is_s
public:
void set_output_volume(float volume) final {
scale_.load(uint16_t(std::clamp(volume * 65535.0f, 0.0f, 65535.0f)));
scale_.store(uint16_t(std::clamp(volume * 65535.0f, 0.0f, 65535.0f)));
}
bool get_is_stereo() final {