From f029fd0f3bb8253a7cb9bfa0f9182619835b4512 Mon Sep 17 00:00:00 2001 From: rubidium42 Date: Mon, 21 Jun 2021 18:31:56 +0200 Subject: Codechange: remove overloading on UpdateServiceInterval One UpdateServiceInterval has two parameters to update the service interval for a vehicle type, the other for all vehicle types at once. Rename the latter to help with function resolution for the introduction of variants. --- src/table/settings/company_settings.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/table/settings') diff --git a/src/table/settings/company_settings.ini b/src/table/settings/company_settings.ini index 469e1acea..71f99d5a2 100644 --- a/src/table/settings/company_settings.ini +++ b/src/table/settings/company_settings.ini @@ -8,7 +8,7 @@ ; company changes them, it changes for all players. [pre-amble] -static void UpdateServiceInterval(int32 new_value); +static void UpdateAllServiceInterval(int32 new_value); static bool CanUpdateServiceInterval(VehicleType type, int32 &new_value); static void UpdateServiceInterval(VehicleType type, int32 new_value); @@ -77,7 +77,7 @@ var = vehicle.servint_ispercent def = false str = STR_CONFIG_SETTING_SERVINT_ISPERCENT strhelp = STR_CONFIG_SETTING_SERVINT_ISPERCENT_HELPTEXT -post_cb = UpdateServiceInterval +post_cb = UpdateAllServiceInterval [SDT_VAR] var = vehicle.servint_trains -- cgit v1.2.3-54-g00ecf