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:
parent
0beca84624
commit
f1d486bcde
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue