diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-09-15 16:54:34 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-09-15 16:54:34 +0200 |
commit | b8440f4a023069e31f0af75dd9c15af3c3f9a26c (patch) | |
tree | 5f6869ea0f328e114338121cc2bd2f46d7a6e247 /src/modules/m_permchannels.cpp | |
parent | d743bdf338d63e032f3ecb8518e00ea4ff1345ed (diff) |
Work around STB_GNU_UNIQUE symbols not allowing module unmap
Diffstat (limited to 'src/modules/m_permchannels.cpp')
-rw-r--r-- | src/modules/m_permchannels.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp index 0a7dc8ed9..69a282637 100644 --- a/src/modules/m_permchannels.cpp +++ b/src/modules/m_permchannels.cpp @@ -214,10 +214,12 @@ class ModulePermanentChannels : public Module { PermChannel p; bool dirty; + bool loaded; bool save_listmodes; public: - ModulePermanentChannels() : p(this), dirty(false) + ModulePermanentChannels() + : p(this), dirty(false), loaded(false) { } @@ -356,8 +358,6 @@ public: // to be able to set the modes they provide (e.g.: m_stripcolor is inited after us) // Prioritize() is called after all module initialization is complete, consequently // all modes are available now - - static bool loaded = false; if (loaded) return; |