mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 14:01:17 +12:00
Replaced POPCNT with std::popcount<unsigned int>
This commit is contained in:
parent
73a8e6faac
commit
d68d6c4e04
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ namespace coreinit
|
|||
else
|
||||
track = (MEMBlockHeapTrackDEPR*)memory_getPointerFromVirtualOffsetAllowNull(_swapEndianU32(blockHeapHead->headBlock));
|
||||
|
||||
cemu_assert_debug(POPCNT(alignment) == 1); // not a supported alignment value
|
||||
cemu_assert_debug(std::popcount<unsigned int>(alignment) == 1); // not a supported alignment value
|
||||
while (track)
|
||||
{
|
||||
if (track->isFree != _swapEndianU32(0))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue