()
| 252 | } |
| 253 | |
| 254 | public static void Stop() { |
| 255 | if (cdfile == -1 || enabled == false || playing == false) |
| 256 | return; |
| 257 | |
| 258 | // stop mp3 |
| 259 | mp3.stop(); |
| 260 | wasPlaying = false; |
| 261 | playing = false; |
| 262 | Com.DPrintf("CD Audio (MP3s) Stopping track\n"); |
| 263 | } |
| 264 | |
| 265 | private static void Eject() { |
| 266 | if (cdfile == -1 || enabled == false) |
no test coverage detected