mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Removed checking <0 on unsigned int. (lol)
This commit is contained in:
parent
9e59ccd9af
commit
d949ef1b8a
|
|
@ -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…
Reference in a new issue