diff options
| author | iCatButler <i.am.catbutler@gmail.com> | 2016-08-03 19:30:54 +0100 |
|---|---|---|
| committer | iCatButler <i.am.catbutler@gmail.com> | 2016-08-03 19:30:54 +0100 |
| commit | 595034707b7ee346e575c6776327794ab5535ce8 (patch) | |
| tree | 8384c99833c5e437acfde27c34e44bf3c5595656 /libpcsxcore/ix86 | |
| parent | aafb74a6af20e6da46b77323438b41ae7b88fbf4 (diff) | |
Fix possible function pointer initialisation problem
Diffstat (limited to 'libpcsxcore/ix86')
| -rwxr-xr-x | libpcsxcore/ix86/iR3000A.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/ix86/iR3000A.c b/libpcsxcore/ix86/iR3000A.c index e2fd7aee..66fac432 100755 --- a/libpcsxcore/ix86/iR3000A.c +++ b/libpcsxcore/ix86/iR3000A.c @@ -98,7 +98,7 @@ static void(**pRecCP2BSC)() = recCP2BSC; static void recReset(); -void recSetPGXPMode(u32 pgxpMode) +static void recSetPGXPMode(u32 pgxpMode) { switch(pgxpMode) { @@ -129,7 +129,7 @@ void recSetPGXPMode(u32 pgxpMode) } // set interpreter mode too - intSetPGXPMode(pgxpMode); + psxInt.SetPGXPMode(pgxpMode); // reset to ensure new func tables are used recReset(); } |
