1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:47:44 +00:00

Piano: Make AudioPlayerLoop::is_playing const

This commit is contained in:
kleines Filmröllchen 2022-11-18 16:31:19 +01:00 committed by Andrew Kaster
parent 0beca84624
commit f1d486bcde

View file

@ -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);