Manual reversion of PR #1277

This commit is contained in:
Asnivor 2018-09-21 15:38:52 +01:00
parent 2202efb124
commit acebf2621c
2 changed files with 0 additions and 4 deletions

View File

@ -87,8 +87,6 @@ namespace BizHawk.Client.Common
return SystemInfo.Intellivision;
case "SG":
return SystemInfo.SG;
case "GG":
return SystemInfo.GG;
case "SMS":
if ((Emulator as SMS).IsGameGear)
{

View File

@ -319,13 +319,11 @@ namespace BizHawk.Client.Common.MovieConversionExtensions
if (Global.Emulator is SMS && (Global.Emulator as SMS).IsSG1000)
{
movie.HeaderEntries.Add("IsSGMode", "1");
movie.SystemID = "SG";
}
if (Global.Emulator is SMS && (Global.Emulator as SMS).IsGameGear)
{
movie.HeaderEntries.Add("IsGGMode", "1");
movie.SystemID = "GG";
}
if (Global.Emulator is GPGX && (Global.Emulator as GPGX).IsMegaCD)