| 54 | JKRSolidHeap *mspAudioHeap; |
| 55 | |
| 56 | void startAudioTask(void* arg) { |
| 57 | // this either doesn't use the inline or it got recasted to u8* for whatever reason |
| 58 | u8 *audioFile = (u8 *)JKRDvdToMainRam("AudioRes/GCKart.baa", nullptr, EXPAND_SWITCH_DECOMPRESS, |
| 59 | 0, SequenceApp::ptr()->getHeap(), JKRDvdRipper::ALLOC_DIR_BOTTOM, 0, nullptr, nullptr); |
| 60 | GetGameAudioMain()->init(mspAudioHeap, SystemData::scAudioAramSize, audioFile, 0, 0); |
| 61 | delete audioFile; |
| 62 | gSystemRecord.applyAudioSetting(); |
| 63 | } |
| 64 | |
| 65 | void init() { |
| 66 | #ifdef REGION_EU |
nothing calls this directly
no test coverage detected