Add a fourth button for the Script Browse Feature.

This commit is contained in:
VoltZ
2019-11-05 04:17:35 +01:00
parent 54e7236b91
commit 77680d2a78
5 changed files with 140 additions and 16 deletions
+5 -4
View File
@@ -39,10 +39,11 @@ public:
void Logic(u32 hDown, u32 hHeld, touchPosition touch) override;
private:
int Selection = 0;
std::vector<Structs::ButtonPos> mainButtons = {
{90, 40, 140, 35, -1}, // ScriptList.
{90, 100, 140, 35, -1}, // Language.
{90, 160, 140, 35, -1}, // Colors.
std::vector<Structs::ButtonPos> mainButtons = {
{10, 75, 140, 35, -1}, // ScriptList.
{170, 75, 140, 35, -1}, // ScriptBrowse.
{10, 140, 140, 35, -1}, // Language.
{170, 140, 140, 35, -1}, // Colors.
};
};