From 508dc4a9d9e7b5c5a1119c849571ae8d9b8a4029 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 6 Dec 2020 07:16:25 +1000 Subject: [PATCH] Use readonly instead of const in VersionInfo --- src/BizHawk.Common/VersionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Common/VersionInfo.cs b/src/BizHawk.Common/VersionInfo.cs index c1df5bef3e..de78c89c64 100644 --- a/src/BizHawk.Common/VersionInfo.cs +++ b/src/BizHawk.Common/VersionInfo.cs @@ -6,9 +6,9 @@ namespace BizHawk.Common public static partial class VersionInfo { // keep this updated at every major release - public const string MainVersion = "2.5.3"; // Use numbers only or the new version notification won't work - public const string ReleaseDate = "September 12, 2020"; - public const string HomePage = "http://tasvideos.org/BizHawk.html"; + public static readonly string MainVersion = "2.5.3"; // Use numbers only or the new version notification won't work + public static readonly string ReleaseDate = "September 12, 2020"; + public static readonly string HomePage = "http://tasvideos.org/BizHawk.html"; public static readonly bool DeveloperBuild = true; public static readonly string? CustomBuildString;