mame: deconstruct Update()

This commit is contained in:
feos 2020-05-04 16:48:26 +03:00
parent ae448f3cb2
commit 4e60e164be
1 changed files with 5 additions and 13 deletions

View File

@ -631,13 +631,6 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
}
}
private void Update()
{
UpdateFramerate();
UpdateVideo();
UpdateAspect();
}
private void UpdateGameName()
{
_gameName = MameGetString(MAMELuaCommand.GetGameName);
@ -688,7 +681,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
}
else if (!_frameDone)
{
Update();
UpdateVideo();
_frameDone = true;
_mameFrameComplete.Set();
}
@ -729,7 +722,9 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
CheckVersions();
GetInputFields();
Update();
UpdateVideo();
UpdateAspect();
UpdateFramerate();
UpdateGameName();
InitMemoryDomains();
@ -752,10 +747,6 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
_mameStartupComplete.Set();
_loadFailure += data;
}
else
{
_loadFailure = "";
}
// mame sends osd_output_channel casted to int, we implicitly cast it back
if (!data.Contains("pause = "))
@ -781,6 +772,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
string inputFields = MameGetString(MAMELuaCommand.GetInputFields);
string[] portFields = inputFields.Split(';');
MAMEController.BoolButtons.Clear();
_fieldsPorts.Clear();
foreach (string portField in portFields)
{