summaryrefslogtreecommitdiff
path: root/libpcsxcore/r3000a.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-12 03:03:58 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-12 03:03:58 +0000
commit0169e4968d17823b71c52961c52417ea8057130c (patch)
treefeae8d106164c1fbd43ddf9e7adc4ff4a3f70e84 /libpcsxcore/r3000a.c
parent34b2030516e8fcab81affc1e11a9b2f1a61761e4 (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.c2
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