mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Add usz alias for std::size_t
This commit is contained in:
parent
360c4d1554
commit
fb29933d3d
173 changed files with 718 additions and 717 deletions
|
@ -253,7 +253,7 @@ u32 TROPUSRLoader::GetUnlockedPlatinumID(u32 trophy_id, const std::string& confi
|
|||
trophy_base = trophy_base->GetChildren();
|
||||
}
|
||||
|
||||
const size_t trophy_count = m_table4.size();
|
||||
const usz trophy_count = m_table4.size();
|
||||
|
||||
for (std::shared_ptr<rXmlNode> n = trophy_base->GetChildren(); n; n = n->GetNext())
|
||||
{
|
||||
|
@ -281,7 +281,7 @@ u32 TROPUSRLoader::GetUnlockedPlatinumID(u32 trophy_id, const std::string& confi
|
|||
}
|
||||
|
||||
// The platinum trophy stays locked if any relevant trophy is still locked
|
||||
for (size_t i = 0; i < trophy_count; i++)
|
||||
for (usz i = 0; i < trophy_count; i++)
|
||||
{
|
||||
if (m_table4[i].trophy_pid == pid && !m_table6[i].trophy_state)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue