mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-08 04:08:21 +02:00
Fixed playlist selection to "all" when autoFavorites = false.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user