mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-29 03:24:36 +00:00
TROPUSR: Optimization
This commit is contained in:
parent
48870f3e8b
commit
3a2b9f83ec
@ -132,21 +132,9 @@ bool TROPUSRLoader::Save(const std::string& filepath)
|
||||
}
|
||||
|
||||
temp.file.write(m_header);
|
||||
|
||||
for (const TROPUSRTableHeader& tableHeader : m_tableHeaders)
|
||||
{
|
||||
temp.file.write(tableHeader);
|
||||
}
|
||||
|
||||
for (const auto& entry : m_table4)
|
||||
{
|
||||
temp.file.write(entry);
|
||||
}
|
||||
|
||||
for (const auto& entry : m_table6)
|
||||
{
|
||||
temp.file.write(entry);
|
||||
}
|
||||
temp.file.write(m_tableHeaders);
|
||||
temp.file.write(m_table4);
|
||||
temp.file.write(m_table6);
|
||||
|
||||
return temp.commit();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user