Skip to content

Commit

Permalink
change default spd to 8, and unlock the adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
bazz1tv committed Sep 29, 2020
1 parent 77be823 commit d57665c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions pc/tracker/BpmSpdAddWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ BpmSpdAddWidget::BpmSpdAddWidget(Tracker *tracker, PatternEditorPanel *pep) :
updatebpm();
updatespd();
updateadd();

spd_incbtn.enabled = false;
spd_decbtn.enabled = false;
}

#include "apuram.h"
Expand Down
2 changes: 1 addition & 1 deletion pc/tracker/SongSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct SongSettings
char song_title_str[SONGTITLE_SIZE];

static const constexpr unsigned int MIN_BPM = 32, MAX_BPM = 999, DEFAULT_BPM = 120;
static const constexpr unsigned int MIN_SPD = 16, MAX_SPD = 31, DEFAULT_SPD = 16;
static const constexpr unsigned int MIN_SPD = 1, MAX_SPD = 16, DEFAULT_SPD = 8;

unsigned int bpm :11;
unsigned int spd :5;
Expand Down

0 comments on commit d57665c

Please sign in to comment.