diff --git a/src/frontend-common/save_state_selector_ui.cpp b/src/frontend-common/save_state_selector_ui.cpp index c8be1ba51..48544acff 100644 --- a/src/frontend-common/save_state_selector_ui.cpp +++ b/src/frontend-common/save_state_selector_ui.cpp @@ -125,10 +125,7 @@ s32 SaveStateSelectorUI::GetSelectedStateSlot() const void SaveStateSelectorUI::SelectNextSlot() { if (!m_open) - { Open(); - return; - } ResetOpenTimer(); m_current_selection = (m_current_selection == static_cast(m_slots.size() - 1)) ? 0 : (m_current_selection + 1); @@ -137,10 +134,7 @@ void SaveStateSelectorUI::SelectNextSlot() void SaveStateSelectorUI::SelectPreviousSlot() { if (!m_open) - { Open(); - return; - } ResetOpenTimer(); m_current_selection =