mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
First part of fixing sign-compare warning (inside be_t).
This commit is contained in:
parent
0cf35e3b22
commit
771eff273b
31 changed files with 129 additions and 128 deletions
|
@ -76,7 +76,7 @@ bool TROPUSRLoader::LoadTables()
|
|||
{
|
||||
m_file.seek(tableHeader.offset);
|
||||
|
||||
if (tableHeader.type == 4)
|
||||
if (tableHeader.type == 4u)
|
||||
{
|
||||
m_table4.clear();
|
||||
m_table4.resize(tableHeader.entries_count);
|
||||
|
@ -88,7 +88,7 @@ bool TROPUSRLoader::LoadTables()
|
|||
}
|
||||
}
|
||||
|
||||
if (tableHeader.type == 6)
|
||||
if (tableHeader.type == 6u)
|
||||
{
|
||||
m_table6.clear();
|
||||
m_table6.resize(tableHeader.entries_count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue