From f2c48a165a681a3727679b1212b7650bb255e65a Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 17 Apr 2017 22:43:08 -0500 Subject: [PATCH] add SystemInfo for libretro --- BizHawk.Client.Common/Global.cs | 2 ++ BizHawk.Client.Common/SystemInfo.cs | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index 15faccb5a1..0674a15acd 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -145,6 +145,8 @@ namespace BizHawk.Client.Common return SystemInfo.PSX; case "AppleII": return SystemInfo.AppleII; + case "Libretro": + return SystemInfo.Libretro; } } } diff --git a/BizHawk.Client.Common/SystemInfo.cs b/BizHawk.Client.Common/SystemInfo.cs index 052c42c098..0462bb31fb 100644 --- a/BizHawk.Client.Common/SystemInfo.cs +++ b/BizHawk.Client.Common/SystemInfo.cs @@ -43,6 +43,11 @@ namespace BizHawk.Client.Common #region Get SystemInfo + /// + /// Gets the instance for Apple II + /// /// Gets the instance for Apple II ///