Ram Search - a couple small fixes
This commit is contained in:
parent
e10cea356a
commit
b8202bfb45
|
@ -19,7 +19,6 @@ namespace BizHawk.MultiClient
|
||||||
//TODO:
|
//TODO:
|
||||||
//Window position gets saved but doesn't load properly
|
//Window position gets saved but doesn't load properly
|
||||||
//Multiple memory domains
|
//Multiple memory domains
|
||||||
//Search equal to previous value, eveyrthing will be pink afterward
|
|
||||||
//Context Menu - if highlighted items - show Highlight dependent functions
|
//Context Menu - if highlighted items - show Highlight dependent functions
|
||||||
|
|
||||||
string systemID = "NULL";
|
string systemID = "NULL";
|
||||||
|
@ -537,6 +536,7 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
searchList = new List<Watch>(weededList);
|
searchList = new List<Watch>(weededList);
|
||||||
weededList.Clear();
|
weededList.Clear();
|
||||||
|
IsAWeededList = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DoPreview()
|
private void DoPreview()
|
||||||
|
@ -1029,6 +1029,7 @@ namespace BizHawk.MultiClient
|
||||||
case atype.DWORD:
|
case atype.DWORD:
|
||||||
SpecificValueBox.MaxLength = 11;
|
SpecificValueBox.MaxLength = 11;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
SpecificValueBox.MaxLength = 11;
|
SpecificValueBox.MaxLength = 11;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue