tracer: if you grab a machine gun, you don't want it to start firing the instant you touch it.
This commit is contained in:
parent
47ac3d79bd
commit
5fc60810ae
|
@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void SaveConfigSettings()
|
private void SaveConfigSettings()
|
||||||
{
|
{
|
||||||
Tracer.Enabled = false;
|
Tracer.Enabled = LoggingEnabled.Checked;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void TraceView_QueryItemText(int index, int column, out string text)
|
private void TraceView_QueryItemText(int index, int column, out string text)
|
||||||
|
@ -61,8 +61,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
private void TraceLogger_Load(object sender, EventArgs e)
|
private void TraceLogger_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
ClearList();
|
ClearList();
|
||||||
LoggingEnabled.Checked = true;
|
Tracer.Enabled = LoggingEnabled.Checked = false;
|
||||||
Tracer.Enabled = true;
|
|
||||||
SetTracerBoxTitle();
|
SetTracerBoxTitle();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,8 +88,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public void Restart()
|
public void Restart()
|
||||||
{
|
{
|
||||||
ClearList();
|
ClearList();
|
||||||
LoggingEnabled.Checked = true;
|
Tracer.Enabled = LoggingEnabled.Checked = false;
|
||||||
Tracer.Enabled = true;
|
|
||||||
SetTracerBoxTitle();
|
SetTracerBoxTitle();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue