Added SystemInfo and SystemId for Lynx

This commit is contained in:
hegyak 2014-11-18 12:09:11 +00:00
parent 2ff41e9798
commit ce626011d4
2 changed files with 13 additions and 0 deletions

View File

@ -136,6 +136,8 @@ namespace BizHawk.Client.Common
return SystemInfo.DualGB;
case "WSWAN":
return SystemInfo.WonderSwan;
case "LYNX":
return SystemInfo.Lynx;
}
}
}

View File

@ -285,5 +285,16 @@ namespace BizHawk.Client.Common
};
}
}
public static SystemInfo Lynx
{
get
{
return new SystemInfo
{
DisplayName = "Lynx",
ByteSize = 2,
};
}
}
}
}