2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 00:46:08 +00:00

CCharacterInfo: Remove unnecessary top-level const in return value of GetAnimationIndex()

Same behavior, less code.
This commit is contained in:
Lioncash
2020-02-28 04:56:41 -05:00
parent 63cf485f27
commit 9524208cd2
2 changed files with 2 additions and 2 deletions

View File

@@ -66,6 +66,6 @@ public:
s32 GetAnimationIndex(s32 idx) const { return xb0_animIdxs.at(idx); }
const CPASDatabase& GetPASDatabase() const { return x30_pasDatabase; }
const s32 GetAnimationIndex(std::string_view) const;
s32 GetAnimationIndex(std::string_view) const;
};
} // namespace urde