Skip to content

Commit

Permalink
allow up to 3x rate in calctopssrs
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jan 25, 2017
1 parent db10c70 commit f26235e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Profile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2338,8 +2338,8 @@ bool Profile::CalcTopSSRs(unsigned int qty, int skillset) {
float ssr;
unsigned int pos;
};
info temp[40];
for (int i = 0;i < 40;i++) {
info temp[60];
for (int i = 0;i < 60;i++) {
temp[i].ssr = 0;
temp[i].pos = 0;
}
Expand All @@ -2363,7 +2363,7 @@ bool Profile::CalcTopSSRs(unsigned int qty, int skillset) {
Steps* psteps = stepsid.ToSteps(id.ToSong(), true);
if (!psteps)
continue;
for (int i = 0;i < 40;i++) {
for (int i = 0;i < 60;i++) {
temp[i].ssr = 0;
temp[i].pos = 0;
}
Expand Down

0 comments on commit f26235e

Please sign in to comment.