mirror of https://github.com/zeldaret/tp.git
JAUSectionHeap OK
This commit is contained in:
parent
f6e2cbca9d
commit
cc6cfe8d77
|
|
@ -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"),
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -53,7 +53,6 @@ namespace {
|
|||
}
|
||||
return field_0x8[short_id];
|
||||
}
|
||||
virtual ~TStreamDataMgr() {}
|
||||
|
||||
bool isValid() { return field_0x4; }
|
||||
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue