--- linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.cpp 2005/04/10 11:54:58 496 +++ linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.cpp 2005/04/10 11:55:44 497 @@ -225,7 +225,7 @@ } bool AudioOutputDeviceJack::IsPlaying() { - csIsPlaying.GetUnsafe(); + return csIsPlaying.GetUnsafe(); } void AudioOutputDeviceJack::Stop() { @@ -257,7 +257,7 @@ } String AudioOutputDeviceJack::Version() { - String s = "$Revision: 1.18 $"; + String s = "$Revision: 1.19 $"; return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword }