Improve CDDA track list

This commit is contained in:
Jaby
2024-05-05 23:12:08 +02:00
parent a7876ac2a6
commit 6301eb211f
4 changed files with 19 additions and 5 deletions

View File

@@ -29,8 +29,9 @@ namespace JabyEngine {
CD::Command::send<CD_IO::PortIndex0>(CD_IO::Command::Play, track);
}
void stop() {
void pause() {
CD::Command::wait_completed();
CD::Command::send<CD_IO::PortIndex0>(CD_IO::Command::Pause);
}
}
}