clean structure

This commit is contained in:
2026-06-11 14:03:35 +02:00
parent 326424f6fa
commit 677f263648
29 changed files with 119 additions and 82 deletions
+2 -1
View File
@@ -27,7 +27,7 @@ void AudioEngine::setVolume(float v) {
if (m_sink) m_sink->setVolume(m_volume);
}
void AudioEngine::play(const Track &track) {
void AudioEngine::play(const engine::Track &track) {
stop();
m_stopReq = false;
m_pauseReq = false;
@@ -197,3 +197,4 @@ void AudioEngine::playbackLoop() {
if (natural)
emit trackEnded();
}