diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-07-09 03:17:51 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-07-09 03:17:51 +0000 |
| commit | 2062efdfedb6fd9bef719a1b8ad000602ddf0e69 (patch) | |
| tree | a6c44181f4ae2ddc70f8d8c3e28736e7431b74ed /plugins | |
| parent | 391932ec56e8da5372e14726ef0aa2fb881654f2 (diff) | |
| download | pcsxr-2062efdfedb6fd9bef719a1b8ad000602ddf0e69.tar.gz | |
Fix the CALLBACK placement in the sio1 plug-in: I messed it up when I copied over the localization preprocessors for OS X.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85925 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/bladesio1/sio1.c | 4 | ||||
| -rwxr-xr-x | plugins/bladesio1/sio1.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/bladesio1/sio1.c b/plugins/bladesio1/sio1.c index a9de9732..453d7fec 100755 --- a/plugins/bladesio1/sio1.c +++ b/plugins/bladesio1/sio1.c @@ -42,10 +42,6 @@ void ConfDlgProc(); /***************************************************************************/ -#ifndef CALLBACK -#define CALLBACK -#endif - //#define SIO1_DEBUG 1 static char *pluginName = N_("sio1Blade"); diff --git a/plugins/bladesio1/sio1.h b/plugins/bladesio1/sio1.h index b6ed8449..6777345d 100755 --- a/plugins/bladesio1/sio1.h +++ b/plugins/bladesio1/sio1.h @@ -58,6 +58,10 @@ extern char* PLUGLOC(char* toloc); #define N_(x) (x) #endif +#ifndef CALLBACK +#define CALLBACK +#endif + enum { PLAYER_DISABLED = 0, PLAYER_MASTER, |
