this might fix a GTA:VCS crash

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@69 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
cottonvibes 2008-08-29 20:24:27 +00:00 committed by Gregory Hainaut
parent 1b3e2f6f04
commit 8ba4bdbec3
2 changed files with 32 additions and 34 deletions
pcsx2
DebugTools
x86/ix86-32

View File

@ -107,40 +107,38 @@ void __Log(char *fmt, ...);
#define varLog 0
#define Log 0
//NOTE: uncomment these if you want them in release to public builds
#define CPU_LOG 0&&
#define MEM_LOG 0&&
#define HW_LOG 0&&
#define DMA_LOG 0&&
#define BIOS_LOG 0&&
#define ELF_LOG 0&&
#define FPU_LOG 0&&
#define MMI_LOG 0&&
#define VU0_LOG 0&&
#define COP0_LOG 0&&
#define VIF_LOG 0&&
#define SPR_LOG 0&&
#define GIF_LOG 0&&
#define SIF_LOG 0&&
#define IPU_LOG 0&&
#define VUM_LOG 0&&
#define RPC_LOG 0&&
//#define CPU_LOG 0&&
//#define MEM_LOG 0&&
//#define HW_LOG 0&&
//#define DMA_LOG 0&&
//#define BIOS_LOG 0&&
//#define ELF_LOG 0&&
//#define FPU_LOG 0&&
//#define MMI_LOG 0&&
//#define VU0_LOG 0&&
//#define COP0_LOG 0&&
//#define VIF_LOG 0&&
//#define SPR_LOG 0&&
//#define GIF_LOG 0&&
//#define SIF_LOG 0&&
//#define IPU_LOG 0&&
//#define VUM_LOG 0&&
//#define RPC_LOG 0&&
//
//#define PSXCPU_LOG 0&&
//#define PSXMEM_LOG 0&&
//#define PSXHW_LOG 0&&
//#define PSXBIOS_LOG 0&&
//#define PSXDMA_LOG 0&&
//
//#define PAD_LOG 0&&
//#define GTE_LOG 0&&
//#define CDR_LOG 0&&
//#define GPU_LOG 0&&
//#define PSXCNT_LOG 0&&
//#define EECNT_LOG 0&&
//
//#define EMU_LOG 0&&
#define PSXCPU_LOG 0&&
#define PSXMEM_LOG 0&&
#define PSXHW_LOG 0&&
#define PSXBIOS_LOG 0&&
#define PSXDMA_LOG 0&&
#define PAD_LOG 0&&
#define GTE_LOG 0&&
#define CDR_LOG 0&&
#define GPU_LOG 0&&
#define PSXCNT_LOG 0&&
#define EECNT_LOG 0&&
#define EMU_LOG 0&&
#endif

View File

@ -2607,7 +2607,7 @@ void recompileNextInstruction(int delayslot)
case 49: recLWC1_coX(g_pCurInstInfo->numpeeps); break;
case 57: recSWC1_coX(g_pCurInstInfo->numpeeps); break;
case 55: recLD_coX(g_pCurInstInfo->numpeeps); break;
case 63: recSD_coX(g_pCurInstInfo->numpeeps, 1); break;
case 63: recSD_coX(g_pCurInstInfo->numpeeps, 0); break; //the 0 is just temporary, find out what should go there
default:
assert(0);
}