dont allocate keystates repeatedly in input code (use `ref keystate`) instead

This commit is contained in:
zeromus 2014-01-30 04:35:35 +00:00
parent a742758288
commit b7a053f7da
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace BizHawk.Client.EmuHawk
if (keyboard.Poll().IsFailure)
return;
state = keyboard.GetCurrentState();
keyboard.GetCurrentState(ref state);
if (Result.Last.IsFailure)
return;
}