Ram Search - when switching sizes, if the selected display type is no longer valid, set it to the default

This commit is contained in:
adelikat 2013-09-28 21:54:42 +00:00
parent f706bd45ae
commit 7d7c062822
1 changed files with 6 additions and 1 deletions

View File

@ -461,7 +461,12 @@ namespace BizHawk.MultiClient
{
SpecificValueBox.Text = "0";
}
if (!Watch.AvailableTypes(size).Contains(Settings.Type))
{
Settings.Type = Watch.AvailableTypes(size)[0];
}
SetReboot(true);
}