Bk2 - tweaks to input log and input diplay logic
This commit is contained in:
parent
5e14df9f30
commit
8001a49afd
|
@ -141,11 +141,19 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
else if (def.FloatControls.Contains(buttons[i]))
|
||||
{
|
||||
var temp = trimmed.Substring(iterator, 3);
|
||||
var val = int.Parse(temp);
|
||||
string temp;
|
||||
try
|
||||
{
|
||||
temp = trimmed.Substring(iterator, 4);
|
||||
var val = int.Parse(temp.Trim());
|
||||
MyFloatControls[buttons[i]] = val;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
int zzz = 0;
|
||||
}
|
||||
|
||||
MyFloatControls[buttons[i]] = val;
|
||||
iterator += 4;
|
||||
iterator += 5;
|
||||
floatIt++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@ namespace BizHawk.Client.Common
|
|||
return GenerateLogEntry()
|
||||
.Replace(".", " ")
|
||||
.Replace("|", "")
|
||||
.Replace("000,000", " ");
|
||||
.Replace(" 0, 0,", " ");
|
||||
}
|
||||
|
||||
public bool IsEmpty
|
||||
|
@ -104,12 +104,12 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
if (createEmpty)
|
||||
{
|
||||
sb.Append("000,");
|
||||
sb.Append(" 0,");
|
||||
}
|
||||
else
|
||||
{
|
||||
var val = (int)_source.GetFloat(button);
|
||||
sb.Append(val.ToString().PadLeft(3, '0')).Append(',');
|
||||
sb.Append(val.ToString().PadLeft(4, ' ')).Append(',');
|
||||
}
|
||||
}
|
||||
else if (_source.Type.BoolButtons.Contains(button))
|
||||
|
|
Loading…
Reference in New Issue