changed FLAG_NONE to zero, as it should have been

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@864 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2008-03-01 16:53:44 +00:00
parent 5547ed82f6
commit 876fb1dbd5

View File

@ -115,8 +115,8 @@ class RandomizerFunctor {
class projectM
{
public:
static const int FLAG_NONE = 0;
static const int FLAG_DISABLE_PLAYLIST_LOAD = 1 << 0;
static const int FLAG_NONE = 1 << 1;
DLLEXPORT projectM(std::string config_file, int flags = FLAG_NONE);