summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-09-09 13:07:14 +0000
committerSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-09-09 13:07:14 +0000
commit031b39df59c23668fe209b5d2da6a3edd79caa86 (patch)
treef54d3e72d71a73b9d6f32efd5366e9448092c9aa
parent9299e1526d2af3187118779e0cf409e2980b046e (diff)
downloadpcsxr-031b39df59c23668fe209b5d2da6a3edd79caa86.tar.gz
Gpu - remove ePSXe Chrono Cross interlace hack (several reports it causes problems - use GPU plugin Chrono Cross fix + GPU fake busy states)
Interpreter - remove psxBASIC CP0 check (redundant) git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@56983 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--libpcsxcore/gpu.c2
-rw-r--r--libpcsxcore/psxinterpreter.c5
2 files changed, 3 insertions, 4 deletions
diff --git a/libpcsxcore/gpu.c b/libpcsxcore/gpu.c
index ca26e926..cdc8f1a4 100644
--- a/libpcsxcore/gpu.c
+++ b/libpcsxcore/gpu.c
@@ -84,6 +84,7 @@ int gpuReadStatus()
hard = GPU_readStatus();
+#if 0
// ePSXe 1.7.0 - Chrono Cross interlace hack
if (hard & 0x400000) {
switch (Config.PsxType) {
@@ -96,6 +97,7 @@ int gpuReadStatus()
break;
}
}
+#endif
// NOTE:
diff --git a/libpcsxcore/psxinterpreter.c b/libpcsxcore/psxinterpreter.c
index dc577f3a..e4e02248 100644
--- a/libpcsxcore/psxinterpreter.c
+++ b/libpcsxcore/psxinterpreter.c
@@ -794,10 +794,7 @@ void psxCOP2() {
psxCP2[_Funct_]();
}
-void psxBASIC() {
- if ((psxRegs.CP0.n.Status & 0x40000000) == 0 )
- return;
-
+void psxBASIC() {
psxCP2BSC[_Rs_]();
}