Skip to content

Commit

Permalink
thar be buggins
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 24, 2020
1 parent 2e8c8ee commit 07fcf58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ determine_cc_type(const col_type& last, const col_type& now)
return cc_was_init;

bool single_tap = is_single_tap(now);
if (now == col_ohjump) {
if (last == col_ohjump) {
if (single_tap)
return cc_jump_single;
else
Expand Down Expand Up @@ -1095,7 +1095,7 @@ gen_metanoteinfo(const vector<vector<int>>& itv_rows,
last_col);

// we don't want to set lasttime or lastcol for empty rows
if (mni.col == cc_empty)
if (mni.col == col_empty)
continue;

// every note has at least 2 ms values associated with it, the ms
Expand Down

0 comments on commit 07fcf58

Please sign in to comment.