Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
visus
/
teensy-audio
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
fixing missing semicolon
dds
Dave Crist
hace 5 años
padre
970dcb1a0b
commit
0c184d9914
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
+1
-1
play_sd_wav.cpp
+ 1
- 1
play_sd_wav.cpp
Ver fichero
@@ -126,7 +126,7 @@ void AudioPlaySdWav::togglePlayPause(void) {
// toggle back and forth between state_play and STATE_PAUSED
if(state == state_play) {
state = STATE_PAUSED
state = STATE_PAUSED
;
}
else if(state == STATE_PAUSED)
state = state_play;
Escribir
Vista previa
Cargando…
Cancelar
Guardar