Some improvements, comments and polishing.
This commit is contained in:
parent
e4271fe1bc
commit
6061ad7579
13 changed files with 76 additions and 118 deletions
|
@ -42,6 +42,7 @@
|
|||
#include "UI/GameSettingsScreen.h"
|
||||
#include "UI/MiscScreens.h"
|
||||
#include "UI/ControlMappingScreen.h"
|
||||
#include "UI/DisplayLayoutScreen.h"
|
||||
#include "UI/SavedataScreen.h"
|
||||
#include "UI/Store.h"
|
||||
#include "UI/ui_atlas.h"
|
||||
|
@ -887,6 +888,10 @@ void MainScreen::sendMessage(const char *message, const char *value) {
|
|||
UpdateUIState(UISTATE_MENU);
|
||||
screenManager()->push(new ControlMappingScreen());
|
||||
}
|
||||
if (!strcmp(message, "display layout editor")) {
|
||||
UpdateUIState(UISTATE_MENU);
|
||||
screenManager()->push(new DisplayLayoutScreen());
|
||||
}
|
||||
if (!strcmp(message, "settings")) {
|
||||
UpdateUIState(UISTATE_MENU);
|
||||
screenManager()->push(new GameSettingsScreen(""));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue