diff options
author | Paweł Kołodziejski | 2003-11-29 19:49:49 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-11-29 19:49:49 +0000 |
commit | f1d0219067789780f570feb097ce1c5af338bacc (patch) | |
tree | 75425eda2c82b87b8c88038db67de691fc29ed69 | |
parent | a8036ed17ba4ee4ae4a1fd0d35501360a58955a0 (diff) | |
download | scummvm-rg350-f1d0219067789780f570feb097ce1c5af338bacc.tar.gz scummvm-rg350-f1d0219067789780f570feb097ce1c5af338bacc.tar.bz2 scummvm-rg350-f1d0219067789780f570feb097ce1c5af338bacc.zip |
fixed warning
svn-id: r11430
-rw-r--r-- | sound/audiocd.cpp | 2 |
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; } |