diff options
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/dfxvideo/key.c | 2 | ||||
| -rwxr-xr-x | plugins/peopsxgl/key.c | 4 |
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; |
