Next progress.

- Added a Toggle Menu for auto updates.

- Left / Right can now scroll on grid to the last / next row.

- Check on MainScreen constructor, if UniStore is valid. If not, download Universal-DB, if not found.

- Reworked the menus some bit.

- Update Screenshots.
This commit is contained in:
StackZ
2020-10-31 05:00:20 +01:00
parent 6aec8dac77
commit 7f3f859194
34 changed files with 202 additions and 109 deletions
+2 -2
View File
@@ -106,7 +106,7 @@ Result Init::MainLoop() {
bool fullExit = false;
if (Initialize() == -1) fullExit = true;
hidSetRepeatParameters(20, 10);
hidSetRepeatParameters(20, 8);
/* Loop as long as the status is not fullExit. */
while (aptMainLoop() && !fullExit) {
@@ -129,7 +129,7 @@ Result Init::MainLoop() {
if (hDown & KEY_START) fullExit = true; // Make it optionally faster.
if (fadeAlpha < 255) {
fadeAlpha += 2;
fadeAlpha += 4;
if (fadeAlpha >= 255) {
fullExit = true;
}