Skip to content

Commit 6761bb9

Browse files
right we can ref pass this now
1 parent d1ae092 commit 6761bb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Etterna/Globals/MinaCalc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3658,7 +3658,7 @@ Calc::InitializeHands(const vector<NoteInfo>& NoteInfo,
36583658
// we're sure we don't need to use this for anything else we can probably
36593659
// refpass again but cba to test atm
36603660
float
3661-
Hand::CalcMSEstimate(vector<float> input, int burp)
3661+
Hand::CalcMSEstimate(vector<float>& input, const int& burp)
36623662
{
36633663
static const bool dbg = false;
36643664

src/Etterna/Globals/MinaCalc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Hand
3838
/* Spits out a rough estimate of difficulty based on the ms values within
3939
the interval The vector passed to it is the vector of ms values within each
4040
interval, and not the full vector of intervals. */
41-
float CalcMSEstimate(std::vector<float> input, int burp);
41+
float CalcMSEstimate(std::vector<float>& input, const int& burp);
4242

4343
/* Averages nps and ms estimates for difficulty to get a rough initial
4444
value. This is relatively robust as patterns that get overrated by nps

0 commit comments

Comments
 (0)