diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index acd6fdc11e..721f46b198 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -138,6 +138,8 @@ namespace BizHawk.Client.Common return SystemInfo.WonderSwan; case "Lynx": return SystemInfo.Lynx; + case "PSX": + return SystemInfo.PSX; } } } diff --git a/BizHawk.Client.Common/SystemInfo.cs b/BizHawk.Client.Common/SystemInfo.cs index 943abb5873..b56517b238 100644 --- a/BizHawk.Client.Common/SystemInfo.cs +++ b/BizHawk.Client.Common/SystemInfo.cs @@ -296,5 +296,16 @@ namespace BizHawk.Client.Common }; } } + public static SystemInfo PSX + { + get + { + return new SystemInfo + { + DisplayName = "PlayStation", + ByteSize = 4, + }; + } + } } }