mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
Fix minor issue with usage of STL thread::hardware_concurrency()
This commit is contained in:
parent
11ba6e45ab
commit
d3bc96a201
9 changed files with 24 additions and 13 deletions
|
@ -2344,7 +2344,7 @@ extern void ppu_initialize(const ppu_module& info)
|
|||
|
||||
static s32 limit()
|
||||
{
|
||||
return static_cast<s32>(std::thread::hardware_concurrency());
|
||||
return static_cast<s32>(utils::get_thread_count());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue