Skip to content

Commit

Permalink
Ignore adding Steamworks Common Redistributables
Browse files Browse the repository at this point in the history
Hope this doesn't bite me in the butt later if it ever has DLSS embedded.
  • Loading branch information
beeradmoore committed Dec 26, 2023
1 parent 33b1471 commit 1fc0e31
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Data/Steam/SteamLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ public async Task<List<Game>> ListGamesAsync()
var appManifests = Directory.GetFiles(libraryFolder, "appmanifest_*.acf");
foreach (var appManifest in appManifests)
{
// Don't bother adding Steamworks Common Redistributables.
if (appManifest.EndsWith("appmanifest_228980.acf") == true)
{
continue;
}

var game = GetGameFromAppManifest(appManifest);
if (game != null)
{
Expand Down

0 comments on commit 1fc0e31

Please sign in to comment.