mirror of https://github.com/zeldaret/botw.git
ksys/act: Fix one matching issue
This commit is contained in:
parent
9ee0c750f2
commit
b0498a15bf
|
@ -73370,7 +73370,7 @@
|
|||
0x0000007100d2f6f0,ActorInfoData::hasTagByName,232,
|
||||
0x0000007100d2f7d8,ActorInfoData::hasTagWithIter,296,
|
||||
0x0000007100d2f900,ActorInfoData::hasTag,224,
|
||||
0x0000007100d2f9e0,ActorInfoData::getActorSameGroupActorName,256,_ZNK4ksys3act8InfoData21getSameGroupActorNameEPKc?
|
||||
0x0000007100d2f9e0,ActorInfoData::getActorSameGroupActorName,256,_ZNK4ksys3act8InfoData21getSameGroupActorNameEPKc
|
||||
0x0000007100d2fae0,ActorInfoData::__auto1,136,
|
||||
0x0000007100d2fb68,ActorInfoData::getTerrainTextures,452,
|
||||
0x0000007100d2fd2c,ActorInfoData::getDrops,228,
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -193,9 +193,9 @@ void InfoData::getHomeAreas(const char* actor, HomeAreas& info) const {
|
|||
}
|
||||
}
|
||||
|
||||
// NON_MATCHING: stack
|
||||
const char* InfoData::getSameGroupActorName(const char* actor) const {
|
||||
al::ByamlIter iter;
|
||||
return [&] {
|
||||
if (getActorIter(&iter, actor, false)) {
|
||||
al::ByamlHashIter hash_iter{iter.getRootNode()};
|
||||
al::ByamlData data;
|
||||
|
@ -206,6 +206,7 @@ const char* InfoData::getSameGroupActorName(const char* actor) const {
|
|||
}
|
||||
}
|
||||
return sead::SafeString::cEmptyString.cstr();
|
||||
}();
|
||||
}
|
||||
|
||||
const char* InfoData::getString(const char* actor, const char* key,
|
||||
|
|
Loading…
Reference in New Issue