Skip to content

Commit

Permalink
man im silly
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jun 10, 2020
1 parent 1799c05 commit f6c2241
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Etterna/Globals/MinaCalc/CalcWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ struct CalcMovingWindow

// set everything to zero
inline void zero() { _itv_vals.fill(static_cast<T>(0)); }
inline void fill(const T& val) { _itv_vals.fill(const T& val); }
inline void fill(const T& val) { _itv_vals.fill(val); }

protected:
std::array<T, max_moving_window_size> _itv_vals = { 0, 0, 0, 0, 0, 0 };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ struct WideRangeRollMod
const float& tc_ms)
{
// we will let ohjumps through here

update_seq_ms(bt, any_ms, tc_ms);
if (bt == base_single_jump || bt == base_jump_single) {
return;
Expand Down Expand Up @@ -292,6 +292,7 @@ struct WideRangeRollMod
// don't know yet, so just wait and see
break;
case meta_meta_enigma:
case meta_unknowable_enigma:
// it's been too long... your vision becomes blurry.. your
// memory fades... why are we here again? what are we trying
// to do? who are we....
Expand Down
2 changes: 1 addition & 1 deletion src/Etterna/Globals/MinaCalc/Ulbu.h
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ struct TheGreatBazoinkazoinkInTheSky
_seq.advance_sequencing(ct, row_time, ms_any);

// mhi will exclusively track pattern configurations
(*_mhi)(*_last_mhi, ct, row_notes);
(*_mhi)(*_last_mhi, ct);

// update interval aggregation
_mitvhi._itvhi.set_col_taps(ct);
Expand Down

0 comments on commit f6c2241

Please sign in to comment.