Cheat Window - cheats works now!
This commit is contained in:
parent
f821ff8f50
commit
759fc88eae
|
@ -44,13 +44,13 @@ namespace BizHawk.MultiClient
|
||||||
public void Enable()
|
public void Enable()
|
||||||
{
|
{
|
||||||
enabled = true;
|
enabled = true;
|
||||||
//TODO: freeze
|
domain.SetFreeze(address, new MemoryDomain.FreezeData(MemoryDomain.FreezeData.Flag.Frozen, value));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Disable()
|
public void Disable()
|
||||||
{
|
{
|
||||||
enabled = false;
|
enabled = false;
|
||||||
//TODO: freeze
|
domain.SetFreeze(address, MemoryDomain.FreezeData.Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool IsEnabled()
|
public bool IsEnabled()
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
//Open/Close rom should start a new cheat list
|
//Open/Close rom should start a new cheat list
|
||||||
//Implement Options menu settings
|
//Implement Options menu settings
|
||||||
//Implement Freeze/Unfreeze on enabled changed in Cheat object
|
//Implement Freeze functions in all memory domains
|
||||||
//Save - implement (should default to SaveAs if no cheats file)
|
//Save - implement (should default to SaveAs if no cheats file)
|
||||||
//Restore Window Size should restore column order as well
|
//Restore Window Size should restore column order as well
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,6 @@ namespace BizHawk.MultiClient
|
||||||
//address num digits based on domain size
|
//address num digits based on domain size
|
||||||
//Restore window size should restore column order as well
|
//Restore window size should restore column order as well
|
||||||
//When receiving a watch from a different domain, should something be done?
|
//When receiving a watch from a different domain, should something be done?
|
||||||
//Save should default to SaveAs if no watch file
|
|
||||||
|
|
||||||
int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired
|
int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired
|
||||||
int defaultHeight;
|
int defaultHeight;
|
||||||
|
|
Loading…
Reference in New Issue