Fixed bug where art/information was not loaded when random key was double clicked swiftly.

This commit is contained in:
Pieter Hulshoff 2016-08-10 10:53:23 +02:00
parent 7c6f07ebe0
commit 9e7802c72e

View File

@ -346,11 +346,8 @@ void RetroFE::run()
break;
case RETROFE_HIGHLIGHT_EXIT:
if ( processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST)
{
state = RETROFE_HIGHLIGHT_ENTER;
}
else if (currentPage_->isGraphicsIdle() && currentPage_->isMenuScrolling())
if ((processUserInput(currentPage_) == RETROFE_HIGHLIGHT_REQUEST) ||
(currentPage_->isGraphicsIdle() && currentPage_->isMenuScrolling()))
{
currentPage_->onNewItemSelected();
currentPage_->highlightEnter();