mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 17:28:19 -05:00
Port #4182 from Citra: "Prefix all size_t with std::"
This commit is contained in:
@ -65,7 +65,7 @@ ResultCode HandleTable::Close(Handle handle) {
|
||||
}
|
||||
|
||||
bool HandleTable::IsValid(Handle handle) const {
|
||||
size_t slot = GetSlot(handle);
|
||||
std::size_t slot = GetSlot(handle);
|
||||
u16 generation = GetGeneration(handle);
|
||||
|
||||
return slot < MAX_COUNT && objects[slot] != nullptr && generations[slot] == generation;
|
||||
|
Reference in New Issue
Block a user