| 94 | } |
| 95 | |
| 96 | void EntryMenu::SwipeToNextPage() { |
| 97 | const auto old_entry_idx = this->cur_entry_idx; |
| 98 | this->base_entry_idx_x += this->entry_width_count; |
| 99 | this->cur_entry_idx += this->entry_width_count * g_EntryHeightCount; |
| 100 | this->NotifyFocusedEntryChanged(old_entry_idx); |
| 101 | } |
| 102 | |
| 103 | void EntryMenu::SwipeRewind() { |
| 104 | const auto old_entry_idx = this->cur_entry_idx; |
no test coverage detected