Skip to content

Commit

Permalink
dont bother saving/loading radar values
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 3, 2017
1 parent 4df4581 commit 4a7510e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/NotesLoaderSSC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ struct ssc_parser_helper_t
steps_tag_handlers["DESCRIPTION"]= &SetDescription;
steps_tag_handlers["DIFFICULTY"]= &SetDifficulty;
steps_tag_handlers["METER"]= &SetMeter;
steps_tag_handlers["RADARVALUES"]= &SetRadarValues;
//steps_tag_handlers["RADARVALUES"]= &SetRadarValues;
steps_tag_handlers["CREDIT"]= &SetCredit;
steps_tag_handlers["MUSIC"]= &SetStepsMusic;
steps_tag_handlers["BPMS"]= &SetStepsBPMs;
Expand Down
2 changes: 1 addition & 1 deletion src/NotesWriterSSC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ static RString GetSSCNoteData( const Song &song, const Steps &in, bool bSavingCa
asRadarValues.push_back(ssprintf("%.6f", rv[rc]));
}
}
lines.push_back(ssprintf("#RADARVALUES:%s;", join(",", asRadarValues).c_str()));
//lines.push_back(ssprintf("#RADARVALUES:%s;", join(",", asRadarValues).c_str()));

push_back_tag(lines, "#CREDIT:%s;", in.GetCredit());

Expand Down

0 comments on commit 4a7510e

Please sign in to comment.