rpcsx/rpcs3/Emu/system_config.cpp
2020-12-18 12:55:54 +03:00

27 lines
540 B
C++

#include "stdafx.h"
#include "system_config.h"
#include "Utilities/StrUtil.h"
#include "util/sysinfo.hpp"
cfg_root g_cfg;
bool cfg_root::node_core::has_rtm() const
{
return utils::has_rtm();
}
std::string cfg_root::node_vfs::get(const cfg::string& _cfg, const char* _def) const
{
auto [spath, sshared] = _cfg.get();
if (spath.empty())
{
return fs::get_config_dir() + _def;
}
auto [semudir, sshared2] = emulator_dir.get();
return fmt::replace_all(spath, "$(EmulatorDir)", semudir.empty() ? fs::get_config_dir() : semudir);
}