diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-12 03:03:58 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-12 03:03:58 +0000 |
| commit | 0169e4968d17823b71c52961c52417ea8057130c (patch) | |
| tree | feae8d106164c1fbd43ddf9e7adc4ff4a3f70e84 /libpcsxcore/r3000a.c | |
| parent | 34b2030516e8fcab81affc1e11a9b2f1a61761e4 (diff) | |
use boolean for where it should.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47869 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/r3000a.c')
| -rw-r--r-- | libpcsxcore/r3000a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/r3000a.c b/libpcsxcore/r3000a.c index b569e5d7..d8b3255a 100644 --- a/libpcsxcore/r3000a.c +++ b/libpcsxcore/r3000a.c @@ -33,7 +33,7 @@ int psxInit() { SysPrintf(_("Running PCSX Version %s (%s).\n"), PACKAGE_VERSION, __DATE__); #ifdef PSXREC - if (Config.Cpu) { + if (Config.Cpu == CPU_INTERPRETER) { psxCpu = &psxInt; } else psxCpu = &psxRec; #else |
