diff options
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/being.h b/src/being/being.h index e1f97a08b..b35c550bd 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -1175,8 +1175,8 @@ class Being notfinal : public ActorSprite, * If walking in direction 'neg' the value is negated. * TODO: Used by eAthena only? */ - int getOffset(const signed char pos, - const signed char neg) const restrict2 A_WARN_UNUSED; + template<signed char pos, signed char neg> + int getOffset() const restrict2 A_WARN_UNUSED; int searchSlotValue(const std::vector<int> &restrict slotRemap, const int val) const restrict2 A_WARN_UNUSED; |