mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-02-05 02:00:45 +03:00
Update Base.cs
This commit is contained in:
parent
d0b4ce0451
commit
1980a2106a
@ -82,7 +82,7 @@ namespace Steamworks.ServerList
|
|||||||
//
|
//
|
||||||
// The request has been cancelled or changed in some way
|
// The request has been cancelled or changed in some way
|
||||||
//
|
//
|
||||||
if ( request == IntPtr.Zero || thisRequest.Value != request.Value )
|
if ( request.Value == IntPtr.Zero || thisRequest.Value != request.Value )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
var r = Responsive.Count;
|
var r = Responsive.Count;
|
||||||
@ -125,7 +125,7 @@ namespace Steamworks.ServerList
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
internal int Count => Internal.GetServerCount( request );
|
internal int Count => Internal.GetServerCount( request );
|
||||||
internal bool IsRefreshing => request != IntPtr.Zero && Internal.IsRefreshing( request );
|
internal bool IsRefreshing => request.Value != IntPtr.Zero && Internal.IsRefreshing( request );
|
||||||
internal List<int> watchList = new List<int>();
|
internal List<int> watchList = new List<int>();
|
||||||
internal int LastCount = 0;
|
internal int LastCount = 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user