mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-01 22:30:14 +01:00
Update TileImageLoader.cs
This commit is contained in:
parent
6a4046a838
commit
961c8387c6
|
|
@ -34,14 +34,13 @@ namespace MapControl
|
|||
|
||||
public bool TryDequeue(out Tile tile)
|
||||
{
|
||||
if (TryPop(out tile))
|
||||
if (!TryPop(out tile))
|
||||
{
|
||||
tile.IsPending = false;
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
tile = null;
|
||||
return false;
|
||||
tile.IsPending = false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue