mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
TROPUSR: Optimization
This commit is contained in:
parent
48870f3e8b
commit
3a2b9f83ec
1 changed files with 3 additions and 15 deletions
|
@ -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…
Add table
Reference in a new issue