| 33 | } |
| 34 | |
| 35 | void WaveText::Play() |
| 36 | { |
| 37 | if (_terminated) |
| 38 | { |
| 39 | return; |
| 40 | } |
| 41 | LOG_DEBUG(Audio, "[AudioText] {}: Play() - started", (const char*)Name()); |
| 42 | _playing = true; |
| 43 | _paused = false; |
| 44 | _everPlayed = true; |
| 45 | } |
| 46 | |
| 47 | void WaveText::Stop() |
| 48 | { |
no outgoing calls
no test coverage detected