Skip to content

Commit

Permalink
include failed grade in the ssr-write skip
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 30, 2017
1 parent 8a8e7d4 commit 4fabc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HighScore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ XNode *HighScoreImpl::CreateEttNode() const {
pHoldNoteScores->AppendChild(HoldNoteScoreToString(hns), iHoldNoteScores[hns]);

// dont bother writing skillset ssrs for non-applicable scores
if (fWifeScore > 0.f) {
if (fWifeScore > 0.f || grade == Grade_Failed) {
XNode* pSkillsetSSRs = pNode->AppendChild("SkillsetSSRs");
FOREACH_ENUM(Skillset, ss)
pSkillsetSSRs->AppendChild(SkillsetToString(ss), FloatToString(fSkillsetSSRs[ss]).substr(0, 5));
Expand Down

0 comments on commit 4fabc16

Please sign in to comment.