Basic Bot - update Run button status when loading a bot file
This commit is contained in:
parent
15c1fafa48
commit
2d9fde1bed
|
@ -708,12 +708,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
TieBreaker1Address = botData.TieBreaker1;
|
||||
TieBreaker2Address = botData.TieBreaker2;
|
||||
TieBreaker3Address = botData.TieBreaker3;
|
||||
try
|
||||
{
|
||||
MainComparisonType = botData.ComparisonTypeMain;
|
||||
Tie1ComparisonType = botData.ComparisonTypeTie1;
|
||||
Tie2ComparisonType = botData.ComparisonTypeTie2;
|
||||
Tie3ComparisonType = botData.ComparisonTypeTie3;
|
||||
try
|
||||
{
|
||||
MainComparisonType = botData.ComparisonTypeMain;
|
||||
Tie1ComparisonType = botData.ComparisonTypeTie1;
|
||||
Tie2ComparisonType = botData.ComparisonTypeTie2;
|
||||
Tie3ComparisonType = botData.ComparisonTypeTie3;
|
||||
|
||||
MainBestRadio.Checked = botData.MainCompareToBest;
|
||||
TieBreak1BestRadio.Checked = botData.TieBreaker1CompareToBest;
|
||||
|
@ -729,12 +729,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
TieBreak2Numeric.Value = botData.TieBreaker2CompareToValue;
|
||||
TieBreak3Numeric.Value = botData.TieBreaker3CompareToValue;
|
||||
}
|
||||
catch
|
||||
{
|
||||
MainComparisonType = 0;
|
||||
Tie1ComparisonType = 0;
|
||||
Tie2ComparisonType = 0;
|
||||
Tie3ComparisonType = 0;
|
||||
catch
|
||||
{
|
||||
MainComparisonType = 0;
|
||||
Tie1ComparisonType = 0;
|
||||
Tie2ComparisonType = 0;
|
||||
Tie3ComparisonType = 0;
|
||||
|
||||
MainBestRadio.Checked = true;
|
||||
TieBreak1BestRadio.Checked = true;
|
||||
|
@ -774,6 +774,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
Settings.RecentBotFiles.Add(CurrentFileName);
|
||||
MessageLabel.Text = Path.GetFileNameWithoutExtension(path) + " loaded";
|
||||
|
||||
AssessRunButtonStatus();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue