mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-27 09:08:50 +01:00
Merged build 0.7.6
This commit is contained in:
commit
f8fffad95b
@ -53,7 +53,12 @@ void AttractMode::update(float dt, Page &page)
|
||||
{
|
||||
elapsedTime_ = 0;
|
||||
isActive_ = false;
|
||||
page.setScrolling(Page::ScrollDirectionIdle);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool AttractMode::isActive()
|
||||
{
|
||||
return isActive_;
|
||||
}
|
||||
@ -24,6 +24,7 @@ public:
|
||||
void reset();
|
||||
void update(float dt, Page &page);
|
||||
float idleTime;
|
||||
bool isActive();
|
||||
|
||||
private:
|
||||
bool isActive_;
|
||||
|
||||
@ -724,7 +724,8 @@ RetroFE::RETROFE_STATE RetroFE::processUserInput(Page *page)
|
||||
!input_.keystate(UserInput::KeyCodeDown) &&
|
||||
!input_.keystate(UserInput::KeyCodeRight) &&
|
||||
!input_.keystate(UserInput::KeyCodePageUp) &&
|
||||
!input_.keystate(UserInput::KeyCodePageDown))
|
||||
!input_.keystate(UserInput::KeyCodePageDown) &&
|
||||
!attract_.isActive())
|
||||
{
|
||||
if (page->isMenuScrolling())
|
||||
state = RETROFE_HIGHLIGHT_REQUEST;
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
std::string retrofe_version_major = "0";
|
||||
std::string retrofe_version_minor = "7";
|
||||
std::string retrofe_version_build = "5";
|
||||
std::string retrofe_version_build = "6";
|
||||
|
||||
|
||||
std::string Version::getString()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user