| 284 | } |
| 285 | |
| 286 | void resume() |
| 287 | { |
| 288 | SDL_LockMutex(s_midiThreadMutex); |
| 289 | MidiCmd* midiCmd = midiAllocCmd(); |
| 290 | if (midiCmd) |
| 291 | { |
| 292 | midiCmd->cmd = MIDI_RESUME; |
| 293 | } |
| 294 | SDL_UnlockMutex(s_midiThreadMutex); |
| 295 | } |
| 296 | |
| 297 | void stopMidiSound() |
| 298 | { |
no test coverage detected