silence a MSVC warning

Originally committed to SVN as r3540.
This commit is contained in:
Karl Blomster 2009-09-19 20:15:59 +00:00
parent fa9c8c17f8
commit 7ba66342b0
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ wxArrayString PortAudioPlayer::GetOutputDevices(wxString favorite) {
}
bool PortAudioPlayer::IsPlaying() {
return Pa_IsStreamActive(stream);
return Pa_IsStreamActive(stream) ? true : false;
}
#endif // WITH_PORTAUDIO