mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Removed checking <0 on unsigned int. (lol)
This commit is contained in:
parent
9e59ccd9af
commit
d949ef1b8a
1 changed files with 1 additions and 2 deletions
|
@ -96,8 +96,7 @@ SaveDataManageDialog::SaveDataManageDialog(wxWindow* parent, unsigned int* sort_
|
|||
if (m_sort_type != nullptr)
|
||||
{
|
||||
//Check sort type and set it to combo box
|
||||
if ((*m_sort_type >= m_sort_options->GetCount())
|
||||
|| (*m_sort_type < 0))
|
||||
if (*m_sort_type >= m_sort_options->GetCount())
|
||||
{
|
||||
*m_sort_type = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue