mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-12 09:08:53 +01:00
Enable enterOnCollection during attract mode.
This commit is contained in:
parent
fe7f9a77de
commit
976879f580
@ -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( )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user