ksys/res: Fix copy-and-paste error

This commit is contained in:
Léo Lam 2020-12-20 00:18:32 +01:00
parent 058cca1a3f
commit cc5c9581b4
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public:
const AIActionDef& getAI(s32 index) const { return mAIs[index]; }
const sead::Buffer<AIActionDef>& getAIs() const { return mAIs; }
const sead::Buffer<AIActionDef>& getActions() const { return mAIs; }
const sead::Buffer<AIActionDef>& getActions() const { return mActions; }
const AIActionDef& getAction(act::ai::ActionType type, s32 index) const {
return getActionsOrAIs(type)[index];