summaryrefslogtreecommitdiff
path: root/libpcsxcore/psxdma.c
diff options
context:
space:
mode:
authorSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-02-02 17:26:59 +0000
committerSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-02-02 17:26:59 +0000
commitc8edcac4e14a31af9d848c0dfded76908b8c1d7d (patch)
tree538c37cccec59ce7109ff048bc6328413451b80c /libpcsxcore/psxdma.c
parentd0b9cf9a9dec7d63da7784d581b723840c28ed20 (diff)
downloadpcsxr-c8edcac4e14a31af9d848c0dfded76908b8c1d7d.tar.gz
Experimental patches
- cdrom.c - burst dma 0.3333x - cdrom.c - mono xa attenuation (Tales of Phantasia) - misc comments cleanup Disabled by default git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@62851 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/psxdma.c')
-rw-r--r--libpcsxcore/psxdma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/psxdma.c b/libpcsxcore/psxdma.c
index e03750d9..88eb7fa8 100644
--- a/libpcsxcore/psxdma.c
+++ b/libpcsxcore/psxdma.c
@@ -71,7 +71,7 @@ void psxDma4(u32 madr, u32 bcr, u32 chcr) { // SPU
#if 1
SPUDMA_INT((bcr >> 16) * (bcr & 0xffff) / 2);
#else
- // Experimental DMA timing
+ // Experimental burst dma transfer (0.333x max)
SPUDMA_INT((bcr >> 16) * (bcr & 0xffff) / 3);
#endif
return;
@@ -118,7 +118,7 @@ void psxDma6(u32 madr, u32 bcr, u32 chcr) {
#if 1
GPUOTCDMA_INT( size );
#else
- // Experimental DMA timing
+ // Experimental burst dma transfer (0.333x max)
GPUOTCDMA_INT( size/3 );
#endif
return;