Fixed playlist selection to "all" when autoFavorites = false.

This commit is contained in:
Pieter Hulshoff 2017-04-23 09:11:36 +02:00
parent 1a9d6ac874
commit 546e0b2c14
2 changed files with 13 additions and 1 deletions

View File

@ -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())
{

View File

@ -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()