fixed an error message, dump version number
This commit is contained in:
parent
14d5460fd1
commit
bef159eb67
2 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
VERSION = 3.3.10
|
||||
VERSION = 3.3.11cvs
|
||||
|
||||
# use target name which does not use a captital letter at the beginning
|
||||
contains(CONFIG, "noupcasename") {
|
||||
|
|
|
@ -341,8 +341,10 @@ QString CSound::CheckDeviceCapabilities ( const int iDriverIdx )
|
|||
( CurDevStreamFormat.mChannelsPerFrame != 2 ) ||
|
||||
( CurDevStreamFormat.mBitsPerChannel != 32 ) )
|
||||
{
|
||||
return QString ( tr ( "The audio stream format for this audio device is"
|
||||
"not compatible with the requirements." ) );
|
||||
return QString ( tr ( "The audio stream format for this audio device is "
|
||||
"not compatible with the requirements. Maybe the "
|
||||
"number of channels is incompatible, e.g., if the "
|
||||
"device only is mono." ) );
|
||||
}
|
||||
|
||||
// TODO mSampleRate, mFormatFlags = kAudioFormatFlagIsSignedInteger
|
||||
|
|
Loading…
Reference in a new issue