Skip to content

Commit

Permalink
show "CONFIGURATION" instead of "X GAMES AVAILABLE" for the retropie …
Browse files Browse the repository at this point in the history
…menu
  • Loading branch information
joolswills committed Nov 8, 2016
1 parent 25478d0 commit 1c343c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion es-app/src/views/SystemView.cpp
Expand Up @@ -177,8 +177,10 @@ void SystemView::onCursorChanged(const CursorState& state)
setAnimation(infoFadeOut, 0, [this, gameCount] {
std::stringstream ss;

if (getSelected()->getName() == "retropie")
ss << "CONFIGURATION";
// only display a game count if there are at least 2 games
if(gameCount > 1)
else if(gameCount > 1)
ss << gameCount << " GAMES AVAILABLE";

mSystemInfo.setText(ss.str());
Expand Down

0 comments on commit 1c343c9

Please sign in to comment.