Skip to content

Commit

Permalink
Get rid of redundant (int) cast
Browse files Browse the repository at this point in the history
  • Loading branch information
rankynbass committed Jul 27, 2024
1 parent 98b4355 commit 221a5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XIVLauncher.Core/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ private static void Main(string[] args)
string appName, altName;
if (CoreEnvironmentSettings.AltAppID > 0)
{
appId = (uint)(int)CoreEnvironmentSettings.AltAppID;
appId = (uint)CoreEnvironmentSettings.AltAppID;
altId = STEAM_APP_ID_FT;
appName = $"Override AppId={appId.ToString()}";
altName = "FFXIV Free Trial";
Expand Down

0 comments on commit 221a5df

Please sign in to comment.