diff options
-rw-r--r-- | Userland/Applications/Piano/AudioPlayerLoop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Piano/AudioPlayerLoop.h b/Userland/Applications/Piano/AudioPlayerLoop.h index 6dace31bd1..3a27550cf1 100644 --- a/Userland/Applications/Piano/AudioPlayerLoop.h +++ b/Userland/Applications/Piano/AudioPlayerLoop.h @@ -26,7 +26,7 @@ public: void enqueue_audio(); void toggle_paused(); - bool is_playing() { return m_should_play_audio; } + bool is_playing() const { return m_should_play_audio; } private: AudioPlayerLoop(TrackManager& track_manager, bool& need_to_write_wav, Audio::WavWriter& wav_writer); |