summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-04-19 18:24:51 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-04-19 18:24:51 +0000
commit1e6943712162a2ae3c26f14941986df566382bba (patch)
treefbd9a79933a40338667e04d17bbd33a0875b61f9 /plugins
parent32a5e70e9134f933756a96e547dcdd718b8d5f1e (diff)
downloadpcsxr-1e6943712162a2ae3c26f14941986df566382bba.tar.gz
Ignore case XK_section on OS X for now.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@84144 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/dfxvideo/key.c2
-rwxr-xr-xplugins/peopsxgl/key.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/dfxvideo/key.c b/plugins/dfxvideo/key.c
index 3f101f4f..511ea1cb 100755
--- a/plugins/dfxvideo/key.c
+++ b/plugins/dfxvideo/key.c
@@ -56,10 +56,12 @@ void GPUkeypressed(int keycode)
case ((1<<29) | 0xFF0D): //special keycode from pcsx-df: alt-enter
bChangeWinMode=TRUE;
break;
+#ifndef _MACGL
case XK_section: //special - accelerate
iFastFwd = ( iFastFwd != 0 ? 0 : 1 );
UseFrameLimit = ( UseFrameLimit != 0 ? 0 : 1 );
break;
+#endif
case VK_F5:
GPUmakeSnapshot();
break;
diff --git a/plugins/peopsxgl/key.c b/plugins/peopsxgl/key.c
index c52d94bb..76f86734 100755
--- a/plugins/peopsxgl/key.c
+++ b/plugins/peopsxgl/key.c
@@ -68,12 +68,14 @@ void GPUkeypressed(int keycode)
bFullScreen = ( bFullScreen != 0 ? 0 : 1 );
GPUopen(disp, "2");
break;*/
-
+
+#ifndef _MACGL
case XK_section:
bUseFrameSkip=!bUseFrameSkip;
bUseFrameLimit=!bUseFrameLimit;
iFrameLimit = ( iFrameLimit != 0 ? 0 : 2 );
break;
+#endif
case VK_INSERT:
ulKeybits|=KEY_RESETTEXSTORE;