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:
parent
a8bf7f1828
commit
58f8ad7c12
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue