mirror of https://github.com/zeldaret/botw.git
Fix some minor matching issues
This commit is contained in:
parent
33c56f03f2
commit
6e5c8b382d
|
|
@ -7552,7 +7552,7 @@
|
|||
0x00000071001336d0,uking::action::FlyingCharacterFreeze::m34,164,
|
||||
0x0000007100133774,_ZNK5uking6action21FlyingCharacterFreeze27checkDerivedRuntimeTypeInfoEPKN4sead15RuntimeTypeInfo9InterfaceE,8,_ZNK5uking6action21FlyingCharacterFreeze27checkDerivedRuntimeTypeInfoEPKN4sead15RuntimeTypeInfo9InterfaceE
|
||||
0x000000710013377c,_ZNK5uking6action21FlyingCharacterFreeze18getRuntimeTypeInfoEv,92,_ZNK5uking6action21FlyingCharacterFreeze18getRuntimeTypeInfoEv
|
||||
0x00000071001337d8,_ZN5uking6action21FlyingCharacterFreezeD1Ev,4,_ZN5uking6action21FlyingCharacterFreezeD1Ev
|
||||
0x00000071001337d8,_ZN5uking6action21FlyingCharacterFreezeD1Ev,4,
|
||||
0x00000071001337dc,_ZN5uking6action21FlyingCharacterFreezeD0Ev,36,_ZN5uking6action21FlyingCharacterFreezeD0Ev
|
||||
0x0000007100133800,sub_7100133800,372,
|
||||
0x0000007100133974,AI_Action_FlyingCharacterFreezeDie::ctor,48,_ZN5uking6action24FlyingCharacterFreezeDieC1ERKN4ksys3act2ai10ActionBase7InitArgE
|
||||
|
|
@ -12527,7 +12527,7 @@
|
|||
0x00000071001d9a1c,_ZN5uking6action12LevelFlyMove11loadParams_Ev,84,
|
||||
0x00000071001d9a70,_ZNK5uking6action12LevelFlyMove27checkDerivedRuntimeTypeInfoEPKN4sead15RuntimeTypeInfo9InterfaceE,8,_ZNK5uking6action12LevelFlyMove27checkDerivedRuntimeTypeInfoEPKN4sead15RuntimeTypeInfo9InterfaceE
|
||||
0x00000071001d9a78,_ZNK5uking6action12LevelFlyMove18getRuntimeTypeInfoEv,92,_ZNK5uking6action12LevelFlyMove18getRuntimeTypeInfoEv
|
||||
0x00000071001d9ad4,_ZN5uking6action12LevelFlyMoveD1Ev,4,_ZN5uking6action12LevelFlyMoveD1Ev
|
||||
0x00000071001d9ad4,_ZN5uking6action12LevelFlyMoveD1Ev,4,
|
||||
0x00000071001d9ad8,_ZN5uking6action12LevelFlyMoveD0Ev,36,_ZN5uking6action12LevelFlyMoveD0Ev
|
||||
0x00000071001d9afc,AI_ActionLevelFlyMove::ctor,120,
|
||||
0x00000071001d9b74,_ZN5uking6action16LevelFlyMoveBaseD1Ev,400,
|
||||
|
|
@ -16337,7 +16337,7 @@
|
|||
0x000000710025a9c8,sub_710025A9C8,140,
|
||||
0x000000710025aa54,AI_Action_SiteBossLswordAtkWithChemical::ctor,152,
|
||||
0x000000710025aaec,_ZN5uking6action29SiteBossLswordAtkWithChemicalD1Ev,408,
|
||||
0x000000710025ac84,_ZN5uking6action29SiteBossLswordAtkWithChemicalD0Ev,36,_ZN5uking6action29SiteBossLswordAtkWithChemicalD0Ev
|
||||
0x000000710025ac84,_ZN5uking6action29SiteBossLswordAtkWithChemicalD0Ev,36,
|
||||
0x000000710025aca8,_ZN5uking6action29SiteBossLswordAtkWithChemical5init_EPN4sead4HeapE,1056,
|
||||
0x000000710025b0c8,_ZN5uking6action29SiteBossLswordAtkWithChemical6enter_EPN4ksys3act2ai15InlineParamPackE,244,
|
||||
0x000000710025b1bc,_ZN5uking6action29SiteBossLswordAtkWithChemical5calc_Ev,756,
|
||||
|
|
|
|||
|
Can't render this file because it is too large.
|
|
|
@ -4,8 +4,6 @@ namespace uking::action {
|
|||
|
||||
FlyingCharacterFreeze::FlyingCharacterFreeze(const InitArg& arg) : FlyingCharacterReaction(arg) {}
|
||||
|
||||
FlyingCharacterFreeze::~FlyingCharacterFreeze() = default;
|
||||
|
||||
bool FlyingCharacterFreeze::init_(sead::Heap* heap) {
|
||||
return FlyingCharacterReaction::init_(heap);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ class FlyingCharacterFreeze : public FlyingCharacterReaction {
|
|||
SEAD_RTTI_OVERRIDE(FlyingCharacterFreeze, FlyingCharacterReaction)
|
||||
public:
|
||||
explicit FlyingCharacterFreeze(const InitArg& arg);
|
||||
~FlyingCharacterFreeze() override;
|
||||
|
||||
bool init_(sead::Heap* heap) override;
|
||||
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
||||
|
|
|
|||
|
|
@ -4,8 +4,6 @@ namespace uking::action {
|
|||
|
||||
LevelFlyMove::LevelFlyMove(const InitArg& arg) : LevelFlyMoveBase(arg) {}
|
||||
|
||||
LevelFlyMove::~LevelFlyMove() = default;
|
||||
|
||||
bool LevelFlyMove::init_(sead::Heap* heap) {
|
||||
return LevelFlyMoveBase::init_(heap);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ class LevelFlyMove : public LevelFlyMoveBase {
|
|||
SEAD_RTTI_OVERRIDE(LevelFlyMove, LevelFlyMoveBase)
|
||||
public:
|
||||
explicit LevelFlyMove(const InitArg& arg);
|
||||
~LevelFlyMove() override;
|
||||
~LevelFlyMove() override = default;
|
||||
|
||||
bool init_(sead::Heap* heap) override;
|
||||
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
||||
|
|
|
|||
Loading…
Reference in New Issue