(svn r5918) -Cleanup: rename ConvertDayToYMD/ConvertYMDToDay as they really convert a Date to/from a YearMonthDay.
-Cleanup: swap ConvertDateToYMD's parameters to make the order consistent with the name of the function.
This commit is contained in:
@@ -1675,11 +1675,11 @@ extern void EnginesMonthlyLoop(void);
|
||||
static int32 ClickChangeDateCheat(int32 p1, int32 p2)
|
||||
{
|
||||
YearMonthDay ymd;
|
||||
ConvertDayToYMD(&ymd, _date);
|
||||
ConvertDateToYMD(_date, &ymd);
|
||||
|
||||
if ((BASE_YEAR + ymd.year == MIN_YEAR && p2 == -1) || (BASE_YEAR + ymd.year == MAX_YEAR && p2 == 1)) return _cur_year;
|
||||
|
||||
SetDate(ConvertYMDToDay(_cur_year + p2, ymd.month, ymd.day));
|
||||
SetDate(ConvertYMDToDate(_cur_year + p2, ymd.month, ymd.day));
|
||||
EnginesMonthlyLoop();
|
||||
SetWindowDirty(FindWindowById(WC_STATUS_BAR, 0));
|
||||
return _cur_year;
|
||||
|
Reference in New Issue
Block a user