Arkanoid: Disable double-click to toggle fullscreen when arkanoid controller is selected

This commit is contained in:
Souryo 2016-07-09 16:02:23 -04:00
parent adc5d1bf26
commit af0a954547

View file

@ -38,8 +38,8 @@ namespace Mesen.GUI.Controls
protected override void OnDoubleClick(EventArgs e)
{
if(!InteropEmu.HasZapper()) {
//Disable double clicking (used to switch to fullscreen mode) when using zapper
if(!InteropEmu.HasZapper() && !InteropEmu.HasArkanoidPaddle()) {
//Disable double clicking (used to switch to fullscreen mode) when using zapper/arkanoid controller
base.OnDoubleClick(e);
}
}