Added SystemInfo and SystemId for Lynx
This commit is contained in:
parent
2ff41e9798
commit
ce626011d4
|
@ -136,6 +136,8 @@ namespace BizHawk.Client.Common
|
||||||
return SystemInfo.DualGB;
|
return SystemInfo.DualGB;
|
||||||
case "WSWAN":
|
case "WSWAN":
|
||||||
return SystemInfo.WonderSwan;
|
return SystemInfo.WonderSwan;
|
||||||
|
case "LYNX":
|
||||||
|
return SystemInfo.Lynx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -285,5 +285,16 @@ namespace BizHawk.Client.Common
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public static SystemInfo Lynx
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return new SystemInfo
|
||||||
|
{
|
||||||
|
DisplayName = "Lynx",
|
||||||
|
ByteSize = 2,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue