summaryrefslogtreecommitdiff
path: root/library/PluginManager.cpp
diff options
context:
space:
mode:
authorPetr Mrázek2011-08-14 08:42:21 +0200
committerPetr Mrázek2011-08-14 08:42:21 +0200
commita0f99ef7079bb741dcfa44b7365e3b13f3ec9016 (patch)
tree6c2cb7419868999914e8514a3e7bc8f5f755f447 /library/PluginManager.cpp
parent02ea81c0b32a50f18497e2c4d99c005ae6f0e5d0 (diff)
downloaddfhack-a0f99ef7079bb741dcfa44b7365e3b13f3ec9016.tar.gz
dfhack-a0f99ef7079bb741dcfa44b7365e3b13f3ec9016.tar.bz2
dfhack-a0f99ef7079bb741dcfa44b7365e3b13f3ec9016.tar.xz
Many tweaks to plugins, reorganized the build system and removed more cruft.
Diffstat (limited to 'library/PluginManager.cpp')
-rw-r--r--library/PluginManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/PluginManager.cpp b/library/PluginManager.cpp
index 0a553ae6..7a7bb098 100644
--- a/library/PluginManager.cpp
+++ b/library/PluginManager.cpp
@@ -307,10 +307,10 @@ Plugin::plugin_state Plugin::getState() const
PluginManager::PluginManager(Core * core)
{
#ifdef LINUX_BUILD
- string path = core->p->getPath() + "/plugins/";
+ string path = core->p->getPath() + "/hack/plugins/";
const string searchstr = ".plug.so";
#else
- string path = core->p->getPath() + "\\plugins\\";
+ string path = core->p->getPath() + "\\hack\\plugins\\";
const string searchstr = ".plug.dll";
#endif
cmdlist_mutex = new mutex();