remove some debugging code and remove a warning as a result
This commit is contained in:
parent
a1b03a4a20
commit
3dfb65ee4b
|
@ -141,17 +141,9 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
else if (def.FloatControls.Contains(buttons[i]))
|
||||
{
|
||||
string temp;
|
||||
try
|
||||
{
|
||||
temp = trimmed.Substring(iterator, 4);
|
||||
var val = int.Parse(temp.Trim());
|
||||
MyFloatControls[buttons[i]] = val;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
int zzz = 0;
|
||||
}
|
||||
string temp = trimmed.Substring(iterator, 4);
|
||||
var val = int.Parse(temp.Trim());
|
||||
MyFloatControls[buttons[i]] = val;
|
||||
|
||||
iterator += 5;
|
||||
floatIt++;
|
||||
|
|
Loading…
Reference in New Issue