mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
12 lines
254 B
C++
12 lines
254 B
C++
#include "stdafx.h"
|
|
#include "system_config.h"
|
|
|
|
#include "util/sysinfo.hpp"
|
|
|
|
cfg_root g_cfg{};
|
|
cfg_root g_backup_cfg{};
|
|
|
|
bool cfg_root::node_core::enable_tsx_by_default()
|
|
{
|
|
return utils::has_rtm() && utils::has_mpx() && !utils::has_tsx_force_abort();
|
|
}
|