Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 65f4ed402e - Show all commits

View File

@ -30,6 +30,6 @@ namespace Assets {
}
namespace XAAudio {
void play_fox();
void play_mix();
}
}

View File

@ -25,7 +25,7 @@ struct CDPlayer {
void play() {
if(this->is_xa) {
Assets::XAAudio::play_fox();
Assets::XAAudio::play_mix();
}
else {

View File

@ -122,7 +122,7 @@ namespace Assets {
}
namespace XAAudio {
void play_fox() {
void play_mix() {
CDXA::play(lba, MIX_XA, 0, false);
}
}