git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@908 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
psperl
2008-03-28 02:55:13 +00:00
parent 2c237a426f
commit 2bb4f4af58
2 changed files with 4 additions and 4 deletions

View File

@ -173,11 +173,11 @@ void projectM::readConfig (const std::string & configFile )
_settings.smoothPresetDuration = config.read<int>
( "Smooth Preset Duration", config.read<int>("Smooth Transition Duration", 10));
_settings.presetDuration = config.read<int> ( "Preset Duration", 15 );
_settings.presetURL = config.read<string> ( "Preset Path", "/share/projectM/presets" );
_settings.presetURL = config.read<string> ( "Preset Path", CMAKE_INSTALL_PREFIX "/share/projectM/presets" );
_settings.titleFontURL = config.read<string>
( "Title Font", "/share/projectM/fonts/Vera.ttf" );
( "Title Font", CMAKE_INSTALL_PREFIX "/share/projectM/fonts/Vera.ttf" );
_settings.menuFontURL = config.read<string>
( "Menu Font", "/share/projectM/fonts/VeraMono.ttf" );
( "Menu Font", CMAKE_INSTALL_PREFIX "/share/projectM/fonts/VeraMono.ttf" );
_settings.shuffleEnabled = config.read<bool> ( "Shuffle Enabled", true);
_settings.easterEgg = config.read<float> ( "Easter Egg Parameter", 0.0);