Skip to content

Commit

Permalink
Disable not yet supported games
Browse files Browse the repository at this point in the history
  • Loading branch information
Metadorius committed Apr 24, 2024
1 parent f91c692 commit d1682f1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ClientCore/CnCNet5/GameCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ public void Initialize()
InternalName = "td",
RegistryInstallPath = "HKLM\\Software\\Westwood\\Tiberian Dawn",
UIName = "Tiberian Dawn",
Texture = AssetLoader.TextureFromImage(tdIcon)
Texture = AssetLoader.TextureFromImage(tdIcon),
Supported = false
},

new()
Expand All @@ -143,7 +144,8 @@ public void Initialize()
InternalName = "ra",
RegistryInstallPath = "HKLM\\Software\\Westwood\\Red Alert",
UIName = "Red Alert",
Texture = AssetLoader.TextureFromImage(raIcon)
Texture = AssetLoader.TextureFromImage(raIcon),
Supported = false
},

new()
Expand All @@ -154,7 +156,8 @@ public void Initialize()
InternalName = "d2k",
RegistryInstallPath = "HKLM\\Software\\Westwood\\Dune 2000",
UIName = "Dune 2000",
Texture = AssetLoader.TextureFromImage(d2kIcon)
Texture = AssetLoader.TextureFromImage(d2kIcon),
Supported = false
},

new()
Expand Down Expand Up @@ -187,7 +190,8 @@ public void Initialize()
InternalName = "ss",
RegistryInstallPath = "HKLM\\Software\\Westwood\\Sole Survivor",
UIName = "Sole Survivor",
Texture = AssetLoader.TextureFromImage(ssIcon)
Texture = AssetLoader.TextureFromImage(ssIcon),
Supported = false
}
};

Expand Down

0 comments on commit d1682f1

Please sign in to comment.