summaryrefslogtreecommitdiff
path: root/libpcsxcore/gpu.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/gpu.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/gpu.c')
-rw-r--r--libpcsxcore/gpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/gpu.c b/libpcsxcore/gpu.c
index ff3426f3..63a18cf8 100644
--- a/libpcsxcore/gpu.c
+++ b/libpcsxcore/gpu.c
@@ -126,7 +126,7 @@ void psxDma2(u32 madr, u32 bcr, u32 chcr) { // GPU
// already 32-bit word size ((size * 4) / 4)
GPUDMA_INT(size);
#else
- // Possible DMA burst + overhead
+ // Experimental burst dma transfer (0.333x max)
GPUDMA_INT(size/3);
#endif
return;
@@ -150,7 +150,7 @@ void psxDma2(u32 madr, u32 bcr, u32 chcr) { // GPU
// already 32-bit word size ((size * 4) / 4)
GPUDMA_INT(size);
#else
- // Possible DMA burst + overhead
+ // Experimental burst dma transfer
// - X-Files = 0.333333x max for videos
GPUDMA_INT( size / 3 );
#endif