Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Sep 2, 2020
1 parent ff25455 commit dc01c40
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/guis/gui_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ void GuiMain::onInput(u32 kdown) {
if ((m_selected.titleIndex % 2) == 0) {
if (static_cast<u16>(m_selected.titleIndex + 1) < ((!m_editableOnly) ? Title::g_titles.size() : EditorConfigParser::g_editableTitles.size()))
m_selected.titleIndex++;
else
m_selected.extraOption = 0;
} else {
if (m_selected.titleIndex < (std::ceil(xOffset / 256.0F) * 2 + 4))
m_selected.extraOption = 0;
Expand Down

0 comments on commit dc01c40

Please sign in to comment.