mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Do not account RSX for TSX pauses
This commit is contained in:
parent
70346028c5
commit
a742501a4f
4 changed files with 11 additions and 3 deletions
|
@ -276,6 +276,14 @@ namespace cpu_counter
|
|||
{
|
||||
void add(cpu_thread* _this) noexcept
|
||||
{
|
||||
switch (_this->id_type())
|
||||
{
|
||||
case 1:
|
||||
case 2:
|
||||
break;
|
||||
default: return;
|
||||
}
|
||||
|
||||
std::lock_guard lock(s_cpu_lock);
|
||||
|
||||
u32 id = -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue