mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
show "CONFIGURATION" instead of "X GAMES AVAILABLE" for the retropie menu
This commit is contained in:
parent
25478d045e
commit
1c343c999b
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue