diff --git a/rpcs3/Gui/SaveDataUtility.cpp b/rpcs3/Gui/SaveDataUtility.cpp index 8c888dc084..82ed6a70d2 100644 --- a/rpcs3/Gui/SaveDataUtility.cpp +++ b/rpcs3/Gui/SaveDataUtility.cpp @@ -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; }