Explorar el Código

fixing missing bracket

dds
Dave Crist hace 4 años
padre
commit
f8526467d1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      play_sd_wav.cpp

+ 1
- 1
play_sd_wav.cpp Ver fichero

@@ -128,7 +128,7 @@ void AudioPlaySdWav::togglePlayPause(void) {
if(state == state_play) {
state = STATE_PAUSED;
}
else if(state == STATE_PAUSED)
else if(state == STATE_PAUSED) {
state = state_play;
}
}

Cargando…
Cancelar
Guardar