mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-06 16:49:11 +00:00
UniStore v2! (#36)
* Do not build here. * WIP: UniStoreV2! This implementation is ugly and a big cleanup is needed. * [UniStoreV2]: Add `Lang::get(...)`. * Add back UniStore autobooting. * UniStoreV2: Add List Layout. * Some more UniStore work. Also constify vector's. * Some more spritesheet checks. * oops.. forgot to do `Config::fading`. * Display UniStore version on the Store list bar. * version now needs to be `0` or `1` or not included. versions with 2, 3, 4 and up shows an error now. * You can now also scroll to the next page with D-Pad Left/D-Pad Right! * Last fix before merge?
This commit is contained in:
@@ -58,20 +58,20 @@ private:
|
||||
void colorChanging(u32 hDown, u32 hHeld, touchPosition touch);
|
||||
void MiscSettingsLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||
|
||||
std::vector<Structs::ButtonPos> mainButtons = {
|
||||
const std::vector<Structs::ButtonPos> mainButtons = {
|
||||
{80, 30, 149, 52}, // Language.
|
||||
{80, 90, 149, 52}, // Colors.
|
||||
{80, 150, 149, 52} // Credits.
|
||||
};
|
||||
|
||||
std::vector<Structs::ButtonPos> mainButtons2 = {
|
||||
const std::vector<Structs::ButtonPos> mainButtons2 = {
|
||||
{0, 60, 149, 52}, // Change Music File.
|
||||
{162, 60, 149, 52}, // Change bar style.
|
||||
{0, 130, 149, 52}, // Change Key Delay.
|
||||
{162, 130, 149, 52} // Toggle animation.
|
||||
};
|
||||
|
||||
std::vector<Structs::ButtonPos> arrowPos = {
|
||||
const std::vector<Structs::ButtonPos> arrowPos = {
|
||||
{0, 0, 25, 25}, // Previous Arrow.
|
||||
{295, 0, 25, 25}, // Next Arrow.
|
||||
{0, 215, 25, 25}, // Back Arrow.
|
||||
|
||||
Reference in New Issue
Block a user