Skip to content

Commit 03a2f7a

Browse files
committed
Identify that this intentionally hides the member in the base class.
Fixes a compiler warning, cause by moving SettingsFilePath from UserSettings to SettingsBase.
1 parent 1ba13bd commit 03a2f7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/ORTS.Settings/UpdateSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace ORTS.Settings
2626
{
2727
public class UpdateSettings : SettingsBase
2828
{
29-
public static readonly string SettingsFilePath = Path.Combine(ApplicationInfo.ProcessDirectory, "Updater.ini");
29+
public static new readonly string SettingsFilePath = Path.Combine(ApplicationInfo.ProcessDirectory, "Updater.ini");
3030

3131
#region User Settings
3232

0 commit comments

Comments
 (0)