diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2009-11-03 06:28:09 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2009-11-03 06:28:09 +0000 |
| commit | 1d8aa3305fbb048d39ae4b7b10ac2a951ec84bd3 (patch) | |
| tree | ffe44007f73596e2930f52f0ef0bf426b0fb4572 | |
| parent | 70b78dac61df796f4fce7a747513fd6bf63f50d4 (diff) | |
| download | pcsxr-1d8aa3305fbb048d39ae4b7b10ac2a951ec84bd3.tar.gz | |
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@35181 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | plugins/dfxvideo/key.c | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ November 3, 2009 Wei Mingzhi <weimingzhi@gmail.com> * macosx/plugins/HIDInput/src/PlugPAD.c: Implemented PADstartPoll() and PADpoll(). + * plugins/dfxvideo/key.c: Handle Fullscreen toggle message for Mac OS X. November 2, 2009 Wei Mingzhi <weimingzhi@gmail.com> diff --git a/plugins/dfxvideo/key.c b/plugins/dfxvideo/key.c index f4485a38..061bc0c4 100644 --- a/plugins/dfxvideo/key.c +++ b/plugins/dfxvideo/key.c @@ -80,6 +80,9 @@ void GPUkeypressed(int keycode) BuildDispMenu(0); break; } +#ifdef _MACGL + default: { void HandleKey(int keycode); HandleKey(keycode); } +#endif } } |
