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:
feos 2016-02-21 22:45:22 +03:00
parent 47ac3d79bd
commit 5fc60810ae
1 changed files with 3 additions and 5 deletions

View File

@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk
private void SaveConfigSettings()
{
Tracer.Enabled = false;
Tracer.Enabled = LoggingEnabled.Checked;
}
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)
{
ClearList();
LoggingEnabled.Checked = true;
Tracer.Enabled = true;
Tracer.Enabled = LoggingEnabled.Checked = false;
SetTracerBoxTitle();
}
@ -89,8 +88,7 @@ namespace BizHawk.Client.EmuHawk
public void Restart()
{
ClearList();
LoggingEnabled.Checked = true;
Tracer.Enabled = true;
Tracer.Enabled = LoggingEnabled.Checked = false;
SetTracerBoxTitle();
}