mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-05 00:38:52 +00:00
Switch over to Universal-Core. (#18)
* Don't build here. * WIP: Switch to Universal-Core. * Update Submodule repo & azure-pipelines.
This commit is contained in:
@@ -27,14 +27,13 @@
|
||||
#ifndef SCRIPTBROWSE_HPP
|
||||
#define SCRIPTBROWSE_HPP
|
||||
|
||||
#include "screens/screen.hpp"
|
||||
#include "screens/screenCommon.hpp"
|
||||
#include "common.hpp"
|
||||
#include "fileBrowse.hpp"
|
||||
#include "structs.hpp"
|
||||
|
||||
#include "utils/config.hpp"
|
||||
#include "utils/fileBrowse.h"
|
||||
#include "utils/structs.hpp"
|
||||
#include <vector>
|
||||
|
||||
class ScriptBrowse : public screen
|
||||
class ScriptBrowse : public Screen
|
||||
{
|
||||
public:
|
||||
void Draw(void) const override;
|
||||
@@ -49,12 +48,12 @@ private:
|
||||
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.
|
||||
{0, 215, 25, 25, -1}, // Back Arrow.
|
||||
{5, 0, 25, 25, -1}, // Download All.
|
||||
{45, 0, 25, 25, -1}, // ViewMode Change.
|
||||
{80, 0, 25, 25, -1}, // Search.
|
||||
{295, 0, 25, 25}, // Arrow Up.
|
||||
{295, 215, 25, 25}, // Arrow Down.
|
||||
{0, 215, 25, 25}, // Back Arrow.
|
||||
{5, 0, 25, 25}, // Download All.
|
||||
{45, 0, 25, 25}, // ViewMode Change.
|
||||
{80, 0, 25, 25}, // Search.
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user