diff --git a/src/strings_func.h b/src/strings_func.h index 4bcd224df3..43828f098b 100644 --- a/src/strings_func.h +++ b/src/strings_func.h @@ -99,6 +99,12 @@ inline void SetDParam(size_t n, T &&v) { void SetDParamMaxValue(size_t n, uint64_t max_value, uint min_count = 0, FontSize size = FS_NORMAL); void SetDParamMaxDigits(size_t n, uint count, FontSize size = FS_NORMAL); +template ::value, int> = 0> +void SetDParamMaxValue(size_t n, T max_value, uint min_count = 0, FontSize size = FS_NORMAL) +{ + SetDParamMaxValue(n, max_value.base(), min_count, size); +} + void SetDParamStr(size_t n, const char *str); void SetDParamStr(size_t n, std::string str);