mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 21:38:01 +03:00
Use uptr (std::uintptr_t alias)
This commit is contained in:
parent
b59f142d4e
commit
a6a5292cd7
15 changed files with 62 additions and 62 deletions
|
@ -2459,8 +2459,8 @@ void thread_ctrl::detect_cpu_layout()
|
|||
else
|
||||
{
|
||||
// Iterate through the buffer until a core with hyperthreading is found
|
||||
auto ptr = reinterpret_cast<std::uintptr_t>(buffer.data());
|
||||
const std::uintptr_t end = ptr + buffer_size;
|
||||
auto ptr = reinterpret_cast<uptr>(buffer.data());
|
||||
const uptr end = ptr + buffer_size;
|
||||
|
||||
while (ptr < end)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue