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
Notes: sideshowbarker 2024-07-17 04:21:32 +09:00

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