diff --git a/GUI.NET/Config/PlayerProfile.cs b/GUI.NET/Config/PlayerProfile.cs index 2bfeff79..a401ddf6 100644 --- a/GUI.NET/Config/PlayerProfile.cs +++ b/GUI.NET/Config/PlayerProfile.cs @@ -12,29 +12,5 @@ namespace Mesen.GUI.Config public class PlayerProfile { public string PlayerName = "NewPlayer"; - - [NonSerialized] - public byte[] PlayerAvatar; - - public PlayerProfile() - { - //SetAvatar(Properties.Resources.MesenLogo); - } - /* - - public void SetAvatar(Image image) - { - PlayerAvatar = image.ResizeImage(64, 64).ToByteArray(ImageFormat.Bmp); - } - - public void SetAvatar(string filename) - { - PlayerAvatar = File.ReadAllBytes(filename); - } - - public Image GetAvatarImage() - { - return Image.FromStream(new MemoryStream(PlayerAvatar)); - }*/ } }