mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
229 B
C++
12 lines
229 B
C++
#include "stdafx.h"
|
|
#include "system_config.h"
|
|
|
|
#include "util/sysinfo.hpp"
|
|
|
|
cfg_root g_cfg{};
|
|
|
|
bool cfg_root::node_core::enable_tsx_by_default()
|
|
{
|
|
return utils::has_rtm() && utils::has_mpx() && !utils::has_tsx_force_abort();
|
|
}
|