diff --git a/es-app/src/guis/GuiGameScraper.cpp b/es-app/src/guis/GuiGameScraper.cpp index 138b26c1d..7783d9ecf 100644 --- a/es-app/src/guis/GuiGameScraper.cpp +++ b/es-app/src/guis/GuiGameScraper.cpp @@ -33,7 +33,8 @@ GuiGameScraper::GuiGameScraper( // Row 0 is a spacer. mGameName = std::make_shared(mWindow, - Utils::FileSystem::getFileName(mSearchParams.game->getPath()), + Utils::FileSystem::getFileName(mSearchParams.game->getPath()) + + ((mSearchParams.game->getType() == FOLDER) ? " " + ViewController::FOLDER_CHAR : ""), Font::get(FONT_SIZE_MEDIUM), 0x777777FF, ALIGN_CENTER); mGrid.setEntry(mGameName, Vector2i(0, 1), false, true); diff --git a/es-app/src/guis/GuiScraperMulti.cpp b/es-app/src/guis/GuiScraperMulti.cpp index cff8c146b..30f574138 100644 --- a/es-app/src/guis/GuiScraperMulti.cpp +++ b/es-app/src/guis/GuiScraperMulti.cpp @@ -131,9 +131,11 @@ void GuiScraperMulti::doNextSearch() mSystem->setText(Utils::String::toUpper(mSearchQueue.front().system->getFullName())); // Update subtitle. - ss.str(""); // Clear. + ss.str(""); ss << "GAME " << (mCurrentGame + 1) << " OF " << mTotalGames << " - " << - Utils::FileSystem::getFileName(mSearchQueue.front().game->getPath()); + Utils::FileSystem::getFileName(mSearchQueue.front().game->getPath()) << + ((mSearchQueue.front().game->getType() == FOLDER) ? " " + + ViewController::FOLDER_CHAR : ""); mSubtitle->setText(ss.str()); mSearchComp->search(mSearchQueue.front());