mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-06-03 09:26:49 +02:00
Enable enterOnCollection during attract mode.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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( )
|
||||
|
||||
Reference in New Issue
Block a user