From abdf80ffa0425b30a7c26df67aaa172076f1a909 Mon Sep 17 00:00:00 2001 From: Kkidslogin <96443213+TheMowgliMan@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:59:50 -0500 Subject: [PATCH] [codechange] Revert a commit for something else --- src/currency.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/currency.h b/src/currency.h index 3daa290560..490f3efd01 100644 --- a/src/currency.h +++ b/src/currency.h @@ -72,7 +72,7 @@ enum Currencies { /** Specification of a currency. */ struct CurrencySpec { - float rate; ///< The conversion rate compared to the base currency. + uint16_t rate; ///< The conversion rate compared to the base currency. std::string separator; ///< The thousands separator for this currency. TimerGameCalendar::Year to_euro; ///< Year of switching to the Euro. May also be #CF_NOEURO or #CF_ISEURO. std::string prefix; ///< Prefix to apply when formatting money in this currency.