mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-12 17:58:53 +01:00
Improved menu scrolling in combination with art loading.
This commit is contained in:
parent
757b2b5cb5
commit
176c75607a
@ -364,7 +364,7 @@ void RetroFE::run()
|
||||
break;
|
||||
|
||||
case RETROFE_HIGHLIGHT_LOAD_ART:
|
||||
if ( processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST)
|
||||
if ( currentPage_->isMenuIdle() && processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST)
|
||||
{
|
||||
state = RETROFE_HIGHLIGHT_REQUEST;
|
||||
}
|
||||
@ -377,7 +377,7 @@ void RetroFE::run()
|
||||
break;
|
||||
|
||||
case RETROFE_HIGHLIGHT_ENTER:
|
||||
if ( processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST)
|
||||
if ( currentPage_->isMenuIdle() && processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST)
|
||||
{
|
||||
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 = "14";
|
||||
std::string retrofe_version_build = "15";
|
||||
|
||||
|
||||
std::string Version::getString()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user