various touch ups, minor bug fix.

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/dev-1.0@291 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
psperl
2007-08-05 05:04:35 +00:00
parent e961872101
commit f7fee506c9
11 changed files with 546 additions and 495 deletions

View File

@ -103,7 +103,7 @@ Preset * PresetLoader::loadPreset(unsigned int index, const PresetInputs & prese
assert(index >= 0);
assert(index < m_entries.size());
// Return a new auto pointer to a present
// Return a new pointer to a present
return new Preset(m_entries[index], presetInputs, presetOutputs);
}
@ -119,7 +119,7 @@ void PresetLoader::handleDirectoryError()
case ENOMEM:
std::cerr << "[PresetLoader] out of memory! Are you running Windows?" << std::endl;
abort();
case ENOTDIR:
case ENOTDIR:
std::cerr << "[PresetLoader] directory specified is not a preset directory! Cannot continue." << std::endl;
break;
case ENFILE: