Compile fix

This commit is contained in:
Garry Newman 2019-05-01 13:24:05 +01:00
parent 96eeea1662
commit 157d0d676e
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ namespace Steamworks
/// </summary> /// </summary>
public static void SetPlayedWith( SteamId steamid ) => Internal.SetPlayedWith( steamid ); public static void SetPlayedWith( SteamId steamid ) => Internal.SetPlayedWith( steamid );
static async Task CacheUserInformationAsync( SteamId steamid, bool nameonly ) internal static async Task CacheUserInformationAsync( SteamId steamid, bool nameonly )
{ {
// Got it straight away, skip any waiting. // Got it straight away, skip any waiting.
if ( !Internal.RequestUserInformation( steamid, nameonly ) ) if ( !Internal.RequestUserInformation( steamid, nameonly ) )

View File

@ -53,7 +53,7 @@ namespace Steamworks
/// </summary> /// </summary>
public async Task RequestInfoAsync( int timeout = 5000 ) public async Task RequestInfoAsync( int timeout = 5000 )
{ {
await SteamFriends.CacheUserInformationAsync( Id, true, timeout ); await SteamFriends.CacheUserInformationAsync( Id, true );
} }
/// <summary> /// <summary>