mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-09 12:37:18 -04:00
dfa8efa97b
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
13 lines
376 B
C++
13 lines
376 B
C++
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
|
|
|
#include "JSystem/JAudio2/JAUBankTable.h"
|
|
|
|
void JAUBankTableDictionary::appendBankTable(JSULink<JAUBankTable>* bankTableList) {
|
|
append(bankTableList);
|
|
}
|
|
|
|
// Needed to make the inline function JAUBankTable::getBank appear in this TU
|
|
static const JASBank* dummy(const JAUBankTable* table) {
|
|
return table->getBank(0);
|
|
}
|