Add Arrows for Entry Selection stuff.

This commit is contained in:
SuperSaiyajinStackZ
2019-12-22 00:21:53 +01:00
parent fb1d00049c
commit 5f5fcc3f24
10 changed files with 123 additions and 10 deletions
+5
View File
@@ -32,6 +32,7 @@
#include "utils/config.hpp"
#include "utils/fileBrowse.h"
#include "utils/structs.hpp"
class ScriptBrowse : public screen
{
@@ -47,6 +48,10 @@ private:
mutable int selection = 0;
int keyRepeatDelay = 0;
int fastMode = false;
std::vector<Structs::ButtonPos> arrowPos = {
{295, 0, 25, 25, -1}, // Arrow Up.
{295, 215, 25, 25, -1}, // Arrow Down.
};
};
#endif