Skip to content

Commit

Permalink
Made the GameServerApps version of GetInstalledDepots return an array F…
Browse files Browse the repository at this point in the history
…ixes #192
  • Loading branch information
rlabrecque committed Oct 15, 2017
1 parent db7a960 commit d671e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Plugins/Steamworks.NET/autogen/isteamgameserverapps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ public static bool MarkContentCorrupt(bool bMissingFilesOnly) {
/// <summary>
/// <para> return installed depots in mount order</para>
/// </summary>
public static uint GetInstalledDepots(AppId_t appID, out DepotId_t pvecDepots, uint cMaxDepots) {
public static uint GetInstalledDepots(AppId_t appID, DepotId_t[] pvecDepots, uint cMaxDepots) {
InteropHelp.TestIfAvailableGameServer();
return NativeMethods.ISteamApps_GetInstalledDepots(CSteamGameServerAPIContext.GetSteamApps(), appID, out pvecDepots, cMaxDepots);
return NativeMethods.ISteamApps_GetInstalledDepots(CSteamGameServerAPIContext.GetSteamApps(), appID, pvecDepots, cMaxDepots);
}

/// <summary>
Expand Down

0 comments on commit d671e3e

Please sign in to comment.