mirror of https://github.com/odrling/Aegisub
silence a MSVC warning
Originally committed to SVN as r3540.
This commit is contained in:
parent
fa9c8c17f8
commit
7ba66342b0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue