Fix FileModeState control guide not opening correctly.

This commit is contained in:
J-D-K 2025-11-16 13:00:05 -05:00
parent f629c70f4b
commit 9f268bc670
3 changed files with 6 additions and 3 deletions

View File

@ -39,7 +39,7 @@ INCLUDES := include ./Libraries/FsLib/Switch/FsLib/include ./Libraries/SDLLib/SD
EXEFS_SRC := exefs_src
APP_TITLE := JKSV
APP_AUTHOR := JK
APP_VERSION := 10.10.2025
APP_VERSION := 11.16.2025
ROMFS := romfs
ICON := icon.jpg

View File

@ -2,7 +2,7 @@
namespace builddate
{
inline constexpr int MONTH = 10;
inline constexpr int DAY = 30;
inline constexpr int MONTH = 11;
inline constexpr int DAY = 16;
inline constexpr int YEAR = 2025;
}

View File

@ -101,6 +101,9 @@ void ui::ControlGuide::reset() noexcept
// Set both to the width of the screen.
m_transition.set_target_x(graphics::SCREEN_WIDTH);
m_transition.set_x(graphics::SCREEN_WIDTH);
// Set the state to Hidden.
m_state = State::Hidden;
}
void ui::ControlGuide::update_position_state() noexcept