diff --git a/RetroFE/Source/RetroFE.cpp b/RetroFE/Source/RetroFE.cpp index 9902fae..0972e48 100644 --- a/RetroFE/Source/RetroFE.cpp +++ b/RetroFE/Source/RetroFE.cpp @@ -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; } diff --git a/RetroFE/Source/Version.cpp b/RetroFE/Source/Version.cpp index c2f51d8..8226ff9 100644 --- a/RetroFE/Source/Version.cpp +++ b/RetroFE/Source/Version.cpp @@ -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( )