increase size of note counter variable to avoid overflow

This commit is contained in:
Marco Monaco 2019-02-26 00:38:21 -05:00 committed by Drashna Jaelre
parent dbfbe0d7f0
commit 73d8593352
3 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ uint16_t notes_count;
bool notes_repeat;
bool note_resting = false;
uint8_t current_note = 0;
uint16_t current_note = 0;
uint8_t rest_counter = 0;
#ifdef VIBRATO_ENABLE

View File

@ -54,7 +54,7 @@ uint16_t notes_count;
bool notes_repeat;
bool note_resting = false;
uint8_t current_note = 0;
uint16_t current_note = 0;
uint8_t rest_counter = 0;
#ifdef VIBRATO_ENABLE

View File

@ -94,7 +94,7 @@ bool notes_repeat;
float notes_rest;
bool note_resting = false;
uint8_t current_note = 0;
uint16_t current_note = 0;
uint8_t rest_counter = 0;
#ifdef VIBRATO_ENABLE