Improved menu scrolling in combination with art loading.

This commit is contained in:
Pieter Hulshoff 2016-09-14 10:47:53 +02:00
parent 757b2b5cb5
commit 176c75607a
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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()