Issue #422: Virtual Pads - analog stick - when sticky option is off, and the emulator is unpaused, do not snap to 0 until the mouse button is released

This commit is contained in:
adelikat 2015-07-10 14:36:29 -04:00
parent a8bf7f1828
commit 58f8ad7c12
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ namespace BizHawk.Client.EmuHawk
Readonly = false;
}
if (!Readonly && !StickyPads)
if (!Readonly && !StickyPads && !Control.MouseButtons.HasFlag(MouseButtons.Left))
{
Pads.ForEach(pad => pad.Clear());
}