Ram Search - when switching sizes, if the selected display type is no longer valid, set it to the default
This commit is contained in:
parent
f706bd45ae
commit
7d7c062822
|
@ -461,7 +461,12 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
SpecificValueBox.Text = "0";
|
SpecificValueBox.Text = "0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!Watch.AvailableTypes(size).Contains(Settings.Type))
|
||||||
|
{
|
||||||
|
Settings.Type = Watch.AvailableTypes(size)[0];
|
||||||
|
}
|
||||||
|
|
||||||
SetReboot(true);
|
SetReboot(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue