From 0d3ccad29fb035fced3a1a87b7804fde8c4e94b1 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 15 Aug 2006 15:18:03 +0000 Subject: (svn r5916) -Cleanup: use MIN_YEAR/MAX_YEAR for the year boundaries and BASE_YEAR when comparing _cur_year with a 'full' year. -Cleanup: replace some magic '1920' values with BASE_YEAR. --- settings_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'settings_gui.c') diff --git a/settings_gui.c b/settings_gui.c index 4a98d28fa..6de19cc76 100644 --- a/settings_gui.c +++ b/settings_gui.c @@ -1185,7 +1185,7 @@ static void CustCurrencyWndProc(Window *w, WindowEvent *e) WP(w,def_d).data_1 = (1 << (line * 2 + 0)); } else { _custom_currency.to_euro = - clamp(_custom_currency.to_euro + 1, 2000, MAX_YEAR_END_REAL); + clamp(_custom_currency.to_euro + 1, 2000, MAX_YEAR); WP(w,def_d).data_1 = (1 << (line * 2 + 1)); } } else { // enter text @@ -1237,7 +1237,7 @@ static void CustCurrencyWndProc(Window *w, WindowEvent *e) case 4: /* Year to switch to euro */ val = atoi(b); - val = clamp(val, 1999, MAX_YEAR_END_REAL); + val = clamp(val, 1999, MAX_YEAR); if (val == 1999) val = 0; _custom_currency.to_euro = val; break; -- cgit v1.2.3-54-g00ecf