diff options
| author | Juan Linietsky | 2014-12-16 22:33:35 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-12-16 22:33:35 -0300 |
| commit | d55f95e0d2a2f99a4130a33ad542c3682d0b92db (patch) | |
| tree | 5e413e2e81398254ac2e5d7421c5fd893ef537a7 /drivers/mpc/audio_stream_mpc.cpp | |
| parent | bcf27feb980aec593c7cb771984e46113cfad757 (diff) | |
| parent | 1664cd67101722f0955385ed6b463f534830aeed (diff) | |
| download | godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.tar.gz godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.tar.zst godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.zip | |
Diffstat (limited to 'drivers/mpc/audio_stream_mpc.cpp')
| -rw-r--r-- | drivers/mpc/audio_stream_mpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mpc/audio_stream_mpc.cpp b/drivers/mpc/audio_stream_mpc.cpp index e1f9aacf5..d94f57e68 100644 --- a/drivers/mpc/audio_stream_mpc.cpp +++ b/drivers/mpc/audio_stream_mpc.cpp @@ -275,7 +275,7 @@ void AudioStreamMPC::stop() { } bool AudioStreamMPC::is_playing() const { - return active; + return active || (get_total() - get_todo() -1 > 0); } void AudioStreamMPC::set_paused(bool p_paused) { |
