add SystemInfo for libretro
This commit is contained in:
parent
c4776a0c00
commit
f2c48a165a
|
@ -145,6 +145,8 @@ namespace BizHawk.Client.Common
|
||||||
return SystemInfo.PSX;
|
return SystemInfo.PSX;
|
||||||
case "AppleII":
|
case "AppleII":
|
||||||
return SystemInfo.AppleII;
|
return SystemInfo.AppleII;
|
||||||
|
case "Libretro":
|
||||||
|
return SystemInfo.Libretro;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,11 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
#region Get SystemInfo
|
#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>
|
/// <summary>
|
||||||
/// Gets the <see cref="SystemInfo"/> instance for Apple II
|
/// Gets the <see cref="SystemInfo"/> instance for Apple II
|
||||||
/// </summary
|
/// </summary
|
||||||
|
|
Loading…
Reference in New Issue