Update Movies to remove EMU7800
This commit is contained in:
parent
a49a4b2bc5
commit
ebc7958a68
|
@ -8,7 +8,6 @@ using BizHawk.Emulation.Cores.Nintendo.SNES9X;
|
||||||
using BizHawk.Emulation.Cores.Nintendo.SNES;
|
using BizHawk.Emulation.Cores.Nintendo.SNES;
|
||||||
using BizHawk.Emulation.Cores.Nintendo.GBA;
|
using BizHawk.Emulation.Cores.Nintendo.GBA;
|
||||||
using BizHawk.Emulation.Cores.Atari.A7800Hawk;
|
using BizHawk.Emulation.Cores.Atari.A7800Hawk;
|
||||||
using BizHawk.Emulation.Cores.Atari.Atari7800;
|
|
||||||
|
|
||||||
namespace BizHawk.Client.Common
|
namespace BizHawk.Client.Common
|
||||||
{
|
{
|
||||||
|
@ -465,7 +464,6 @@ namespace BizHawk.Client.Common
|
||||||
public bool? PreviousNES_InQuickNES { get; set; }
|
public bool? PreviousNES_InQuickNES { get; set; }
|
||||||
public bool? PreviousSNES_InSnes9x { get; set; }
|
public bool? PreviousSNES_InSnes9x { get; set; }
|
||||||
public bool? PreviousGBA_UsemGBA { get; set; }
|
public bool? PreviousGBA_UsemGBA { get; set; }
|
||||||
public bool? PreviousA78_UseEmu7800 { get; set; }
|
|
||||||
|
|
||||||
public void QueueNewMovie(IMovie movie, bool record, IEmulator emulator)
|
public void QueueNewMovie(IMovie movie, bool record, IEmulator emulator)
|
||||||
{
|
{
|
||||||
|
@ -533,22 +531,6 @@ namespace BizHawk.Client.Common
|
||||||
Global.Config.GBA_UsemGBA = false;
|
Global.Config.GBA_UsemGBA = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!record && emulator.SystemId == "A78") // meh, copy pasta one more time, last time, I promise
|
|
||||||
{
|
|
||||||
var atari7800HawkName = ((CoreAttribute)Attribute.GetCustomAttribute(typeof(A7800Hawk), typeof(CoreAttribute))).CoreName;
|
|
||||||
var emu7800HawkName = ((CoreAttribute)Attribute.GetCustomAttribute(typeof(Atari7800), typeof(CoreAttribute))).CoreName;
|
|
||||||
|
|
||||||
if (movie.Core == atari7800HawkName)
|
|
||||||
{
|
|
||||||
PreviousA78_UseEmu7800 = Global.Config.A78_UseEmu7800;
|
|
||||||
Global.Config.A78_UseEmu7800 = true;
|
|
||||||
}
|
|
||||||
else if (movie.Core == emu7800HawkName)
|
|
||||||
{
|
|
||||||
PreviousA78_UseEmu7800 = Global.Config.A78_UseEmu7800;
|
|
||||||
Global.Config.A78_UseEmu7800 = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (record) // This is a hack really, we need to set the movie to its propert state so that it will be considered active later
|
if (record) // This is a hack really, we need to set the movie to its propert state so that it will be considered active later
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue