mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Removed unnecessary static_cast
This commit is contained in:
parent
9313055543
commit
b81e71424b
1 changed files with 3 additions and 3 deletions
|
@ -36,9 +36,9 @@ void QueryProcTime(uint64_t &out_now, uint64_t &out_user, uint64_t &out_kernel)
|
||||||
user.LowPart = fuser.dwLowDateTime;
|
user.LowPart = fuser.dwLowDateTime;
|
||||||
user.HighPart = fuser.dwHighDateTime;
|
user.HighPart = fuser.dwHighDateTime;
|
||||||
|
|
||||||
out_now = static_cast<uint64_t>(now.QuadPart);
|
out_now = now.QuadPart;
|
||||||
out_user = static_cast<uint64_t>(user.QuadPart);
|
out_user = user.QuadPart;
|
||||||
out_kernel = static_cast<uint64_t>(kernel.QuadPart);
|
out_kernel = kernel.QuadPart;
|
||||||
}
|
}
|
||||||
|
|
||||||
void QueryCoreTimes(uint32_t count, ProcessorTime out[])
|
void QueryCoreTimes(uint32_t count, ProcessorTime out[])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue