add SystemInfo for libretro

This commit is contained in:
zeromus 2017-04-17 22:43:08 -05:00
parent c4776a0c00
commit f2c48a165a
2 changed files with 7 additions and 0 deletions

View File

@ -145,6 +145,8 @@ namespace BizHawk.Client.Common
return SystemInfo.PSX;
case "AppleII":
return SystemInfo.AppleII;
case "Libretro":
return SystemInfo.Libretro;
}
}
}

View File

@ -43,6 +43,11 @@ namespace BizHawk.Client.Common
#region Get SystemInfo
/// <summary>
/// Gets the <see cref="SystemInfo"/> instance for Apple II
/// </summary
public static SystemInfo Libretro { get; } = new SystemInfo("Libretro", CoreSystem.Libretro, 1);
/// <summary>
/// Gets the <see cref="SystemInfo"/> instance for Apple II
/// </summary