Enable enterOnCollection during attract mode.

This commit is contained in:
Pieter Hulshoff 2019-11-02 15:07:07 +01:00
parent fe7f9a77de
commit 976879f580
2 changed files with 2 additions and 2 deletions

View File

@ -790,7 +790,7 @@ void RetroFE::run( )
nextPageItem_ = currentPage_->getSelectedItem( );
bool enterOnCollection = true;
config_.getProperty( "enterOnCollection", enterOnCollection );
if ( currentPage_->getSelectedItem( )->leaf || !enterOnCollection ) // Current selection is a game or enterOnCollection is not set
if ( currentPage_->getSelectedItem( )->leaf || (!attractMode_ && !enterOnCollection) ) // Current selection is a game or enterOnCollection is not set
{
state = RETROFE_HIGHLIGHT_REQUEST;
}

View File

@ -21,7 +21,7 @@
std::string retrofe_version_major = "0";
std::string retrofe_version_minor = "9";
std::string retrofe_version_build = "12";
std::string retrofe_version_build = "13";
std::string Version::getString( )