This commit is contained in:
Glenn Maynard
2005-11-25 20:38:03 +00:00
parent 64feb1fbbb
commit b948f686cc
+3 -3
View File
@@ -201,11 +201,11 @@ CString DSoundBuf::Init( DSound &ds, DSoundBuf::hw hardware,
waveformat.cbSize = 0; waveformat.cbSize = 0;
waveformat.wFormatTag = WAVE_FORMAT_PCM; waveformat.wFormatTag = WAVE_FORMAT_PCM;
bool NeedCtrlFrequency = false; bool bNeedCtrlFrequency = false;
if( m_iSampleRate == DYNAMIC_SAMPLERATE ) if( m_iSampleRate == DYNAMIC_SAMPLERATE )
{ {
m_iSampleRate = 44100; m_iSampleRate = 44100;
NeedCtrlFrequency = true; bNeedCtrlFrequency = true;
} }
int bytes = m_iSampleBits / 8; int bytes = m_iSampleBits / 8;
@@ -234,7 +234,7 @@ CString DSoundBuf::Init( DSound &ds, DSoundBuf::hw hardware,
format.dwFlags |= DSBCAPS_LOCSOFTWARE; format.dwFlags |= DSBCAPS_LOCSOFTWARE;
#endif #endif
if( NeedCtrlFrequency ) if( bNeedCtrlFrequency )
format.dwFlags |= DSBCAPS_CTRLFREQUENCY; format.dwFlags |= DSBCAPS_CTRLFREQUENCY;
format.dwBufferBytes = m_iBufferSize; format.dwBufferBytes = m_iBufferSize;