summaryrefslogtreecommitdiff
path: root/libpcsxcore/gpu.c
diff options
context:
space:
mode:
authorSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-11-26 20:35:06 +0000
committerSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-11-26 20:35:06 +0000
commitd78e8986a18042c0f0458b0557964e6b1f935b6d (patch)
tree1b616d2a6616613363b77b6e57be8774a5856f7e /libpcsxcore/gpu.c
parentc74729bcb2cc7083990ef0bbabb2845d0ea69a7d (diff)
downloadpcsxr-d78e8986a18042c0f0458b0557964e6b1f935b6d.tar.gz
gpu.c
- reinstall old compatibility hack (1.5x dma chain) - fix this later I guess git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@60186 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/gpu.c')
-rw-r--r--libpcsxcore/gpu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpcsxcore/gpu.c b/libpcsxcore/gpu.c
index 41df8d8a..8280d460 100644
--- a/libpcsxcore/gpu.c
+++ b/libpcsxcore/gpu.c
@@ -153,7 +153,8 @@ void psxDma2(u32 madr, u32 bcr, u32 chcr) { // GPU
size = gpuDmaChainSize(madr);
GPU_dmaChain((u32 *)psxM, madr & 0x1fffff);
- GPUDMA_INT(size);
+ // rebel assault 2 - compatibility hack
+ GPUDMA_INT(size * 1.5);
return;
#ifdef PSXDMA_LOG