mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 15:15:37 +00:00
Fixed an issue where an extra blankspace was appended to text elements when setting the systemdata property to gamecountGames or gamecountGamesNoText
This commit is contained in:
parent
4f8bbc0eca
commit
8fdbf429ef
|
@ -839,7 +839,7 @@ void SystemView::updateGameCount(SystemData* system)
|
|||
else {
|
||||
ss << gameCount.first << " Game" << (gameCount.first == 1 ? " " : "s ") << "("
|
||||
<< gameCount.second << " Favorite" << (gameCount.second == 1 ? ")" : "s)");
|
||||
ssGames << gameCount.first << " Game" << (gameCount.first == 1 ? " " : "s ");
|
||||
ssGames << gameCount.first << " Game" << (gameCount.first == 1 ? "" : "s");
|
||||
ssFavorites << gameCount.second << " Favorite" << (gameCount.second == 1 ? "" : "s");
|
||||
games = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue