From 876fb1dbd55c2fd63c2f54d2d2aa708ecdd45cbf Mon Sep 17 00:00:00 2001 From: w1z7ard Date: Sat, 1 Mar 2008 16:53:44 +0000 Subject: [PATCH] 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 --- src/projectM-engine/projectM.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/projectM-engine/projectM.hpp b/src/projectM-engine/projectM.hpp index 64a46e6a9..1bfe20a41 100755 --- a/src/projectM-engine/projectM.hpp +++ b/src/projectM-engine/projectM.hpp @@ -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);