summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-11-03 06:28:09 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-11-03 06:28:09 +0000
commit1d8aa3305fbb048d39ae4b7b10ac2a951ec84bd3 (patch)
treeffe44007f73596e2930f52f0ef0bf426b0fb4572
parent70b78dac61df796f4fce7a747513fd6bf63f50d4 (diff)
downloadpcsxr-1d8aa3305fbb048d39ae4b7b10ac2a951ec84bd3.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@35181 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--ChangeLog1
-rw-r--r--plugins/dfxvideo/key.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 82de6dc4..3c134ab9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
}
}