aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/audiocd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/audiocd.cpp b/sound/audiocd.cpp
index 718ed10214..c0554ccde3 100644
--- a/sound/audiocd.cpp
+++ b/sound/audiocd.cpp
@@ -93,7 +93,7 @@ AudioCDManager::Status AudioCDManager::getStatus() const {
// TODO: This could be improved for "real" CD playback.
// But to do that, we have to extend the OSystem interface.
Status info = _cd;
- info.playing = isPlaying();
+ info.playing = isPlaying() != 0;
return info;
}