diff options
-rw-r--r-- | src/saveload/saveload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saveload/saveload.h b/src/saveload/saveload.h index c3864c04f..0914a50ea 100644 --- a/src/saveload/saveload.h +++ b/src/saveload/saveload.h @@ -300,7 +300,7 @@ static inline VarType GetVarFileType(VarType type) * @param conv the type to check * @return True if it's a numeric type. */ -static bool IsNumericType(VarType conv) +static inline bool IsNumericType(VarType conv) { return GetVarMemType(conv) <= SLE_VAR_U64; } |