See desc for more.

- Add `skip` function.
- Fix dirSelect.
- Move LangSelect to settings.
- Add bars, to keep the U-U style.
This commit is contained in:
StackZ
2020-11-03 02:41:38 +01:00
parent 0748574516
commit b6d1de03c1
9 changed files with 254 additions and 240 deletions
+2 -2
View File
@@ -118,7 +118,7 @@ void MainScreen::Draw(void) const {
case 4:
/* Settings. */
StoreUtils::DrawSettings(this->sPage, this->sSelection);
StoreUtils::DrawSettings(this->sPage, this->sSelection, this->sPos);
break;
}
@@ -174,7 +174,7 @@ void MainScreen::Logic(u32 hDown, u32 hHeld, touchPosition touch) {
break;
case 4:
StoreUtils::SettingsHandle(hDown, hHeld, touch, this->sPage, this->showSettings, this->storeMode, this->sSelection, this->store, this->entries, this->meta);
StoreUtils::SettingsHandle(hDown, hHeld, touch, this->sPage, this->showSettings, this->storeMode, this->sSelection, this->store, this->entries, this->meta, this->sPos);
break;
}
}