JAUSectionHeap OK

This commit is contained in:
LagoLunatic 2025-12-18 20:46:09 -05:00
parent f6e2cbca9d
commit cc6cfe8d77
4 changed files with 3 additions and 5 deletions

View File

@ -1090,7 +1090,7 @@ config.libs = [
Object(MatchingFor(ALL_GCN, "ShieldD"), "JSystem/JAudio2/JAUBankTable.cpp"),
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUClusterSound.cpp"),
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUInitializer.cpp"),
Object(Equivalent, "JSystem/JAudio2/JAUSectionHeap.cpp"), # weak func order
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUSectionHeap.cpp"),
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUSeqCollection.cpp"),
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUSeqDataBlockMgr.cpp"),
Object(MatchingFor(ALL_GCN), "JSystem/JAudio2/JAUSoundAnimator.cpp"),

View File

@ -61,7 +61,6 @@ public:
JASVoiceBank* newVoiceBank(u32, u32);
bool beginNewBankTable(u32, u32);
JAUBankTable* endNewBankTable();
virtual ~JAUSection() {}
bool isBuilding() const { return field_0x2c; }
bool isOpen() const;

View File

@ -53,7 +53,6 @@ namespace {
}
return field_0x8[short_id];
}
virtual ~TStreamDataMgr() {}
bool isValid() { return field_0x4; }

View File

@ -16,10 +16,10 @@ template<size_t N> class __bitset_base {
public:
__bitset_base();
bool test(size_t pos) const;
bool any() const;
void set(size_t pos, bool val);
void reset(size_t pos);
bool test(size_t pos) const;
bool any() const;
private:
size_t data[N];
};