Browse Source

fixing missing semicolon

dds
Dave Crist 4 years ago
parent
commit
0c184d9914
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      play_sd_wav.cpp

+ 1
- 1
play_sd_wav.cpp View File



// toggle back and forth between state_play and STATE_PAUSED // toggle back and forth between state_play and STATE_PAUSED
if(state == state_play) { if(state == state_play) {
state = STATE_PAUSED
state = STATE_PAUSED;
} }
else if(state == STATE_PAUSED) else if(state == STATE_PAUSED)
state = state_play; state = state_play;

Loading…
Cancel
Save