Skip to content

Commit

Permalink
This aint lua - fix parameter number
Browse files Browse the repository at this point in the history
4 -> 3.
  • Loading branch information
TheROPFather authored Aug 29, 2023
1 parent ca919b3 commit 5b6fb82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/MinaCalc/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ webcalc(Php::Parameters& parameters)
std::string contents = parameters[0];
const double rate = parameters[1];
const double wife = parameters[2];
const int keycount = parameters[4];
const int keycount = parameters[3];

std::vector<NoteInfo> newVector;
std::istringstream stream;
Expand Down

0 comments on commit 5b6fb82

Please sign in to comment.