From e5fa39bdad2e77f22bad71185bf48312a3462cc0 Mon Sep 17 00:00:00 2001 From: Gregory Brzezinski Date: Wed, 2 Nov 2022 22:56:44 +0300 Subject: [PATCH] add win platform to fake gmod --- gameUtils/fakeGames.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gameUtils/fakeGames.go b/gameUtils/fakeGames.go index 1cdec3e..df22de9 100644 --- a/gameUtils/fakeGames.go +++ b/gameUtils/fakeGames.go @@ -1,10 +1,13 @@ package gameUtils var garrysmodGame = SteamGame{ - GameId: "garrysmod", - SteamId: "4000", - Args: []string{}, - Platforms: map[string]bool{"linux": true}, + GameId: "garrysmod", + SteamId: "4000", + Args: []string{}, + Platforms: map[string]bool{ + "linux": true, + "windows": true, + }, Assets: GameInterfaceAssets{ Title: "Garry's Mod", Icon: "icon.png",