maybe fix case issues

This commit is contained in:
Glenn Maynard
2003-09-23 00:07:11 +00:00
parent efc65a20d8
commit adafc1114f
+2 -2
View File
@@ -168,10 +168,10 @@ bool RageSound::Load(CString sSoundFilePath, int precache)
SetStopMode( M_STOP );
CString error;
Sample = SoundReader_FileReader::OpenFile( sSoundFilePath, error );
Sample = SoundReader_FileReader::OpenFile( m_sFilePath, error );
if( Sample == NULL )
RageException::Throw( "RageSoundManager::RageSoundManager: error opening sound '%s': '%s'",
sSoundFilePath.c_str(), error.c_str());
m_sFilePath.c_str(), error.c_str());
if(SOUNDMAN->GetDriverSampleRate() != -1 &&
Sample->GetSampleRate() != SOUNDMAN->GetDriverSampleRate())