diff options
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/object.h b/engines/hugo/object.h index c0933729eb..84c20db041 100644 --- a/engines/hugo/object.h +++ b/engines/hugo/object.h @@ -117,7 +117,7 @@ protected: void restoreSeq(object_t *obj); inline bool checkBoundary(int16 x, int16 y); - template <typename T> + template<typename T> inline int sign(T a) { if ( a < 0) return -1; else return 1; } }; |