From d8e319b250d17a6d731f02f8c9d207bea49d08b4 Mon Sep 17 00:00:00 2001 From: hegyak Date: Wed, 17 Dec 2014 19:14:21 +0000 Subject: [PATCH] Let's let the user know they are Emulating a PlayStation. The ByteSize may be wrong. --- BizHawk.Client.Common/Global.cs | 2 ++ BizHawk.Client.Common/SystemInfo.cs | 11 +++++++++++ 2 files changed, 13 insertions(+) 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, + }; + } + } } }