mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-09-12 20:45:11 -05:00
Revisions, SVI import fix.
This commit is contained in:
@@ -4,16 +4,16 @@
|
||||
#include "appstates/ConfirmState.hpp"
|
||||
#include "appstates/MainMenuState.hpp"
|
||||
#include "appstates/TitleInfoState.hpp"
|
||||
#include "colors.hpp"
|
||||
#include "config.hpp"
|
||||
#include "error.hpp"
|
||||
#include "config/config.hpp"
|
||||
#include "fs/fs.hpp"
|
||||
#include "fslib.hpp"
|
||||
#include "graphics/colors.hpp"
|
||||
#include "input.hpp"
|
||||
#include "keyboard.hpp"
|
||||
#include "logger.hpp"
|
||||
#include "logging/error.hpp"
|
||||
#include "logging/logger.hpp"
|
||||
#include "remote/remote.hpp"
|
||||
#include "strings.hpp"
|
||||
#include "strings/strings.hpp"
|
||||
#include "stringutil.hpp"
|
||||
#include "sys/sys.hpp"
|
||||
#include "tasks/titleoptions.hpp"
|
||||
@@ -58,22 +58,6 @@ TitleOptionState::~TitleOptionState()
|
||||
sm_titleOptionMenu->set_selected(0);
|
||||
}
|
||||
|
||||
std::shared_ptr<TitleOptionState> TitleOptionState::create(data::User *user,
|
||||
data::TitleInfo *titleInfo,
|
||||
TitleSelectCommon *titleSelect)
|
||||
{
|
||||
return std::make_shared<TitleOptionState>(user, titleInfo, titleSelect);
|
||||
}
|
||||
|
||||
std::shared_ptr<TitleOptionState> TitleOptionState::create_and_push(data::User *user,
|
||||
data::TitleInfo *titleInfo,
|
||||
TitleSelectCommon *titleSelect)
|
||||
{
|
||||
auto newState = TitleOptionState::create(user, titleInfo, titleSelect);
|
||||
StateManager::push_state(newState);
|
||||
return newState;
|
||||
}
|
||||
|
||||
void TitleOptionState::update()
|
||||
{
|
||||
const bool hasFocus = BaseState::has_focus();
|
||||
|
||||
Reference in New Issue
Block a user