forked from mirror/openmw-tes3mp
Fix method signatures
This commit is contained in:
parent
f7d8f6456f
commit
8be9627c8d
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ namespace MWMechanics
|
||||||
return mBase;
|
return mBase;
|
||||||
}
|
}
|
||||||
|
|
||||||
const T& getModified() const
|
T getModified() const
|
||||||
{
|
{
|
||||||
return std::max(static_cast<T>(0), mModified);
|
return std::max(static_cast<T>(0), mModified);
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,7 @@ namespace MWMechanics
|
||||||
return mStatic.getBase();
|
return mStatic.getBase();
|
||||||
}
|
}
|
||||||
|
|
||||||
const T& getModified() const
|
T getModified() const
|
||||||
{
|
{
|
||||||
return mStatic.getModified();
|
return mStatic.getModified();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue