mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Fix signed-unsigned comparisons and mark warning as error (part 2).
This commit is contained in:
parent
771eff273b
commit
92e3eaf3ff
68 changed files with 194 additions and 202 deletions
|
@ -596,7 +596,7 @@ void trophy_manager_dialog::ApplyFilter()
|
|||
return;
|
||||
|
||||
const int db_pos = m_game_combo->currentData().toInt();
|
||||
if (db_pos >= m_trophies_db.size() || !m_trophies_db[db_pos])
|
||||
if (db_pos + 0u >= m_trophies_db.size() || !m_trophies_db[db_pos])
|
||||
return;
|
||||
|
||||
const auto trop_usr = m_trophies_db[db_pos]->trop_usr.get();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue