mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add LanguageScreen
This commit is contained in:
parent
5c538badd5
commit
a614ba1eec
1 changed files with 9 additions and 1 deletions
|
@ -94,7 +94,14 @@ public:
|
|||
class SystemScreen : public Screen
|
||||
{
|
||||
public:
|
||||
SystemScreen();
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
|
||||
class LanguageScreen : public Screen
|
||||
{
|
||||
public:
|
||||
LanguageScreen();
|
||||
void update(InputState &input);
|
||||
void render();
|
||||
private:
|
||||
|
@ -107,6 +114,7 @@ public:
|
|||
void update(InputState &input);
|
||||
void render();
|
||||
};
|
||||
|
||||
struct FileSelectScreenOptions {
|
||||
const char* filter; // Enforced extension filter. Case insensitive, extensions separated by ":".
|
||||
bool allowChooseDirectory;
|
||||
|
|
Loading…
Add table
Reference in a new issue