remove some debugging code and remove a warning as a result

This commit is contained in:
adelikat 2014-06-28 02:11:19 +00:00
parent a1b03a4a20
commit 3dfb65ee4b
1 changed files with 3 additions and 11 deletions

View File

@ -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++;