mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Explicitly downcast integers
This commit is contained in:
parent
d57124d075
commit
503e023815
5 changed files with 22 additions and 22 deletions
|
@ -655,7 +655,7 @@ void trophy_manager_dialog::PopulateGameTable()
|
|||
m_game_table->setSortingEnabled(false); // Disable sorting before using setItem calls
|
||||
|
||||
m_game_table->clearContents();
|
||||
m_game_table->setRowCount(m_trophies_db.size());
|
||||
m_game_table->setRowCount(static_cast<int>(m_trophies_db.size()));
|
||||
|
||||
m_game_combo->clear();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue