Skip to content

Commit

Permalink
add 6th difficulty to stats page
Browse files Browse the repository at this point in the history
  • Loading branch information
Warboy1982 committed Jun 14, 2020
1 parent 9e079b1 commit d010bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Menu/StatisticsState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void StatisticsState::listStats()

int researchDone = save->getDiscoveredResearch().size();

std::string difficulty[] = { "STR_1_BEGINNER", "STR_2_EXPERIENCED", "STR_3_VETERAN", "STR_4_GENIUS", "STR_5_SUPERHUMAN" };
std::string difficulty[] = { "STR_1_BEGINNER", "STR_2_EXPERIENCED", "STR_3_VETERAN", "STR_4_GENIUS", "STR_5_SUPERHUMAN", "STR_6_DEMIGOD" };

_lstStats->addRow(2, tr("STR_DIFFICULTY").c_str(), tr(difficulty[save->getDifficulty()]).c_str());
_lstStats->addRow(2, tr("STR_AVERAGE_MONTHLY_RATING").c_str(), Unicode::formatNumber(monthlyScore).c_str());
Expand Down

0 comments on commit d010bed

Please sign in to comment.