In linux the controller plugins need to put back some events for the video plugin

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4972 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2010-01-28 00:35:35 +00:00
parent e856d0b3ed
commit f32fc9667c
3 changed files with 15 additions and 0 deletions

View File

@ -660,6 +660,10 @@ void ReadLinuxKeyboard()
}
break;
}
case ConfigureNotify:
case ClientMessage:
XPutBackEvent(WMdisplay, &E);
break
default:
break;
}

View File

@ -486,6 +486,13 @@ void X11_Read(int _numPAD, SPADStatus* _pPADStatus)
}
}
break;
case ConfigureNotify:
case ClientMessage:
XPutBackEvent(WMdisplay, &E);
break;
default:
break;
}
}
#elif defined(HAVE_COCOA) && HAVE_COCOA

View File

@ -743,6 +743,10 @@ void ReadLinuxKeyboard()
MousePos.WinHeight = WinAttribs.height;
break;
}
case ConfigureNotify:
case ClientMessage:
XPutBackEvent(WMdisplay, &E);
break;
default:
break;
}