- Bump SAM.Picker to .NET4.

- Improvements to downloading of game list and game icons. See #3.
- Improvements to performance of the game list. See #3.
This commit is contained in:
gibbed
2017-11-24 08:58:54 -06:00
parent 66213562f1
commit 94a92ed4b7
8 changed files with 221 additions and 121 deletions

View File

@@ -20,7 +20,6 @@
* distribution.
*/
using System;
using System.Globalization;
using System.Windows.Forms;
@@ -28,7 +27,7 @@ namespace SAM.Picker
{
internal class GameInfo
{
public long Id;
public uint Id;
public string Type;
public ListViewItem Item;
@@ -52,7 +51,7 @@ namespace SAM.Picker
public string Logo;
public GameInfo(Int64 id, string type)
public GameInfo(uint id, string type)
{
this.Id = id;
this.Type = type;