This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-audio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fixing missing semicolon
dds
Dave Crist
5 years ago
parent
970dcb1a0b
commit
0c184d9914
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
play_sd_wav.cpp
+ 1
- 1
play_sd_wav.cpp
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save