Use readonly instead of const in VersionInfo

This commit is contained in:
YoshiRulz 2020-12-06 07:16:25 +10:00
parent 9dcc8f56f4
commit 508dc4a9d9
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 3 deletions

View File

@ -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;