mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-25 17:19:42 +00:00
Add LanguageScreen
This commit is contained in:
parent
5c538badd5
commit
a614ba1eec
@ -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…
Reference in New Issue
Block a user