mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-05 13:38:56 +01:00
Fixed playlist selection to "all" when autoFavorites = false.
This commit is contained in:
parent
1a9d6ac874
commit
546e0b2c14
@ -343,6 +343,10 @@ void RetroFE::run()
|
||||
{
|
||||
currentPage_->selectPlaylist("favorites"); // Switch to favorites playlist
|
||||
}
|
||||
else
|
||||
{
|
||||
currentPage_->selectPlaylist("all"); // Switch to all games playlist
|
||||
}
|
||||
|
||||
currentPage_->onNewItemSelected();
|
||||
currentPage_->reallocateMenuSpritePoints();
|
||||
@ -487,6 +491,10 @@ void RetroFE::run()
|
||||
{
|
||||
currentPage_->selectPlaylist("favorites"); // Switch to favorites playlist
|
||||
}
|
||||
else
|
||||
{
|
||||
currentPage_->selectPlaylist("all"); // Switch to all games playlist
|
||||
}
|
||||
|
||||
if(rememberMenu && lastMenuOffsets_.find(nextPageName) != lastMenuOffsets_.end())
|
||||
{
|
||||
@ -581,6 +589,10 @@ void RetroFE::run()
|
||||
{
|
||||
currentPage_->selectPlaylist("favorites"); // Switch to favorites playlist
|
||||
}
|
||||
else
|
||||
{
|
||||
currentPage_->selectPlaylist("all"); // Switch to all games playlist
|
||||
}
|
||||
|
||||
if(rememberMenu && lastMenuOffsets_.find(currentPage_->getCollectionName()) != lastMenuOffsets_.end())
|
||||
{
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
std::string retrofe_version_major = "0";
|
||||
std::string retrofe_version_minor = "8";
|
||||
std::string retrofe_version_build = "1";
|
||||
std::string retrofe_version_build = "2";
|
||||
|
||||
|
||||
std::string Version::getString()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user