Mini-rewrite of input mapping, theme support, and added KSF reader.

This commit is contained in:
Chris Danford
2002-07-31 19:40:40 +00:00
parent 488798fef6
commit 4ec08edf2d
88 changed files with 1444 additions and 851 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ bool RandomSample::LoadSoundDir( CString sDir )
bool RandomSample::LoadSound( CString sSoundFilePath )
{
LOG->WriteLine( "RandomSample::LoadSound( %s )", sSoundFilePath );
LOG->Trace( "RandomSample::LoadSound( %s )", sSoundFilePath );
RageSoundSample* pSS = new RageSoundSample;
pSS->Load( sSoundFilePath );
@@ -67,7 +67,7 @@ void RandomSample::PlayRandom()
// play one of the samples
if( m_pSamples.GetSize() == 0 )
{
LOG->WriteLine( "WARNING: Tried to play a RandomSample that has 0 sounds loaded." );
LOG->Trace( "WARNING: Tried to play a RandomSample that has 0 sounds loaded." );
}
else
{