Skip to content

Commit

Permalink
Attempt to fix #4153
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Jul 7, 2019
1 parent 9623e79 commit e84f040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/game_stats.cpp
Expand Up @@ -129,7 +129,7 @@ void game_stats::pre_show(window& window)
column_stats["label"] = leader_name + "\n" + controller_name(team);
row_data_stats.emplace("team_leader_name", column_stats);

column_stats["label"] = team.user_team_name().empty() ? team.team_name() : team.user_team_name();
column_stats["label"] = team.user_team_name().empty() ? team.team_name() : team.user_team_name().str();
row_data_stats.emplace("team_name", column_stats);

// Only fill in the rest of the info if the side is known...
Expand Down

0 comments on commit e84f040

Please sign in to comment.