compiled preset -> native preset

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/represet@1171 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2008-09-19 19:18:37 +00:00
parent 894ecd275b
commit ca7cf490d3
5 changed files with 26 additions and 26 deletions

View File

@ -16,7 +16,7 @@
#endif
#ifndef DISABLE_COMPILED_PRESETS
#include "CompiledPresetFactory.hpp"
#include "NativePresetFactory.hpp"
#endif
#include <sstream>
@ -39,7 +39,7 @@ void PresetFactoryManager::initialize(int gx, int gy) {
#endif
#ifndef DISABLE_COMPILED_PRESETS
factory = new CompiledPresetFactory();
factory = new NativePresetFactory();
registerFactory(factory->supportedExtensions(), factory);
#endif
}