diff options
| author | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-02-15 17:21:19 +0000 |
|---|---|---|
| committer | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-02-15 17:21:19 +0000 |
| commit | 7ef3daa6c3e2cea2a4940d7539a15394fedc67cf (patch) | |
| tree | 969d2794da40fc4dbfb87937605a870023823de5 | |
| parent | 0c34a5e4d119caa06af8c40e917dbb4b9bef5c96 (diff) | |
| download | pcsxr-7ef3daa6c3e2cea2a4940d7539a15394fedc67cf.tar.gz | |
CPU_LOG define doesn't exist. Changed to more appropiate PSXDMA_LOG.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82919 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rwxr-xr-x | libpcsxcore/psxdma.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libpcsxcore/psxdma.c b/libpcsxcore/psxdma.c index c6bc6eb0..0750977c 100755 --- a/libpcsxcore/psxdma.c +++ b/libpcsxcore/psxdma.c @@ -42,8 +42,8 @@ void psxDma4(u32 madr, u32 bcr, u32 chcr) { // SPU #endif ptr = (u16 *)PSXM(madr); if (ptr == NULL) { -#ifdef CPU_LOG - CPU_LOG("*** DMA4 SPU - mem2spu *** NULL Pointer!!!\n"); +#ifdef PSXDMA_LOG + PSXDMA_LOG("*** DMA4 SPU - mem2spu *** NULL Pointer!!!\n"); #endif break; } @@ -59,8 +59,8 @@ void psxDma4(u32 madr, u32 bcr, u32 chcr) { // SPU #endif ptr = (u16 *)PSXM(madr); if (ptr == NULL) { -#ifdef CPU_LOG - CPU_LOG("*** DMA4 SPU - spu2mem *** NULL Pointer!!!\n"); +#ifdef PSXDMA_LOG + PSXDMA_LOG("*** DMA4 SPU - spu2mem *** NULL Pointer!!!\n"); #endif break; } @@ -98,8 +98,8 @@ void psxDma6(u32 madr, u32 bcr, u32 chcr) { if (chcr == 0x11000002) { if (mem == NULL) { -#ifdef CPU_LOG - CPU_LOG("*** DMA6 OT *** NULL Pointer!!!\n"); +#ifdef PSXDMA_LOG + PSXDMA_LOG("*** DMA6 OT *** NULL Pointer!!!\n"); #endif HW_DMA6_CHCR &= SWAP32(~0x01000000); DMA_INTERRUPT(6); |
