diff --git a/examples/PoolBox/application/include/asset_mgr.hpp b/examples/PoolBox/application/include/asset_mgr.hpp index 5850ce20..c1128b13 100644 --- a/examples/PoolBox/application/include/asset_mgr.hpp +++ b/examples/PoolBox/application/include/asset_mgr.hpp @@ -30,6 +30,6 @@ namespace Assets { } namespace XAAudio { - void play_fox(); + void play_mix(); } } \ No newline at end of file diff --git a/examples/PoolBox/application/src/application.cpp b/examples/PoolBox/application/src/application.cpp index 567c9975..9f245b33 100644 --- a/examples/PoolBox/application/src/application.cpp +++ b/examples/PoolBox/application/src/application.cpp @@ -25,7 +25,7 @@ struct CDPlayer { void play() { if(this->is_xa) { - Assets::XAAudio::play_fox(); + Assets::XAAudio::play_mix(); } else { diff --git a/examples/PoolBox/application/src/asset_mgr.cpp b/examples/PoolBox/application/src/asset_mgr.cpp index 54f9ab99..ae0da29b 100644 --- a/examples/PoolBox/application/src/asset_mgr.cpp +++ b/examples/PoolBox/application/src/asset_mgr.cpp @@ -122,7 +122,7 @@ namespace Assets { } namespace XAAudio { - void play_fox() { + void play_mix() { CDXA::play(lba, MIX_XA, 0, false); } }