Sfoglia il codice sorgente

fixing use of non-constant in case of switch

dds
Dave Crist 4 anni fa
parent
commit
970dcb1a0b
1 ha cambiato i file con 5 aggiunte e 7 eliminazioni
  1. +5
    -7
      play_sd_wav.cpp

+ 5
- 7
play_sd_wav.cpp Vedi File

@@ -125,13 +125,11 @@ void AudioPlaySdWav::togglePlayPause(void) {
if(state_play >= 8 || state == STATE_STOP) return;

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


Loading…
Annulla
Salva