diff options
-rw-r--r-- | engines/pegasus/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/util.cpp b/engines/pegasus/util.cpp index c38054d051..03bc5729cc 100644 --- a/engines/pegasus/util.cpp +++ b/engines/pegasus/util.cpp @@ -68,7 +68,7 @@ void FunctionPtr::callFunction() { (*_function)(this, _functionArg); } -inline int32 pegasusRound(const int32 a, const int32 b) { +int32 pegasusRound(const int32 a, const int32 b) { if (b < 0) if (a < 0) return -((a - (-b >> 1)) / -b); |