UI: Make plugin search path use arch. bits in name

If on windows/linux, make the plugin search path also include the
architecture bits for its binary search path.
This commit is contained in:
jp9000 2015-07-14 18:05:26 -07:00
parent 5d33c777c2
commit 1f1f03d920

View file

@ -88,7 +88,15 @@ static void AddExtraModulePaths()
return;
string path = (char*)base_module_dir;
#if defined(__APPLE__)
obs_add_module_path((path + "/bin").c_str(), (path + "/data").c_str());
#elif ARCH_BITS == 64
obs_add_module_path((path + "/bin/64bit").c_str(),
(path + "/data").c_str());
#else
obs_add_module_path((path + "/bin/32bit").c_str(),
(path + "/data").c_str());
#endif
}
static QList<QKeySequence> DeleteKeys;