Skip to content

Commit

Permalink
move some static defs to basic sequencing
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jun 7, 2020
1 parent b91642b commit 4e66076
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Etterna/Globals/MinaCalc/Dependent/HD_BasicSequencing.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ enum col_type
col_init
};

static const int num_cols_per_hand = 2;
static const col_type ct_loop[num_col_types] = { col_left,
col_right,
col_ohjump };
static const col_type ct_loop_no_jumps[num_cols_per_hand] = { col_left,
col_right };

static inline auto
determine_col_type(const unsigned& notes, const unsigned& hand_id) -> col_type
{
Expand Down

0 comments on commit 4e66076

Please sign in to comment.