Optimized tSoundManager.

Added tSoundLoader, a template used for the ResourceLoader.
Fixed PushText on the Console.
Added loading from memory on shaders.
Added FileExtension to get file extension.
Added to Packs ExtractToFile and Add using pointers instead of std::vectors ( to give flexibility ).
And fixed some minor bugs.
This commit is contained in:
spartanj
2010-07-30 00:59:49 -03:00
parent 4c07441c77
commit 39312a23dd
26 changed files with 452 additions and 111 deletions

View File

@@ -85,7 +85,7 @@ bool cSoundBuffer::LoadFromMemory( const char* Data, std::size_t SizeInBytes ) {
cLog::instance()->Write( "Failed to read audio data from file in memory" );
return false;
}
}else {
} else {
cLog::instance()->Write( "Failed to load sound buffer from file in memory" );
return false;
}