Input.cs - simplify and remove a todo, I think not creating a copy is fine here

This commit is contained in:
adelikat 2020-05-23 13:35:31 -05:00
parent 54de7ad178
commit 63cd1c603e
1 changed files with 1 additions and 3 deletions

View File

@ -324,9 +324,7 @@ namespace BizHawk.Client.EmuHawk
public IDictionary<string, float> GetAxisValues()
{
// TODO: this is a refactor of code that was making a copy of the input
// Probably just returning the dictionary is all that is actually needed
return _axisValues.ToDictionary(k => k.Key, v => v.Value);
return _axisValues;
}
private void UpdateThreadProc()