Compare commits

..

No commits in common. "312afabfdc176e700ebfaa19ef12f8f5d7ffc298" and "2f3effc0870b15c08dfa8efa2ab0c8ddb98709df" have entirely different histories.

View file

@ -12,7 +12,6 @@ using Avalonia.Threading;
using Microsoft.VisualBasic.CompilerServices;
using Nocksoft.IO.ConfigFiles;
namespace PS2_Manager.Core;
public class Game
@ -32,15 +31,7 @@ public class Game
{
this.GamePath = isoPath;
this.GameID = ISO.GetSerial(isoPath);
FileInfo fileInfo = new FileInfo(isoPath);
if (fileInfo.Length < 1_000_000_000)
{
this.Icon = new DiscIcon(DiscType.CD);
}
else
{
this.Icon = new DiscIcon(DiscType.DVD);
}
this.Config = new Config(this.GetConfigPath());
if (!installed)
{