summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libpcsxcore/gpu.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/libpcsxcore/gpu.c b/libpcsxcore/gpu.c
index 8280d460..773dd0e6 100644
--- a/libpcsxcore/gpu.c
+++ b/libpcsxcore/gpu.c
@@ -153,8 +153,13 @@ void psxDma2(u32 madr, u32 bcr, u32 chcr) { // GPU
size = gpuDmaChainSize(madr);
GPU_dmaChain((u32 *)psxM, madr & 0x1fffff);
- // rebel assault 2 - compatibility hack
- GPUDMA_INT(size * 1.5);
+ // Tekken 3 = use 1.0 only (not 1.5x)
+
+ // Einhander = parse linked list in pieces (todo)
+ // Final Fantasy 4 = internal vram time (todo)
+ // Rebel Assault 2 = parse linked list in pieces (todo)
+ // Vampire Hunter D = allow edits to linked list (todo)
+ GPUDMA_INT(size);
return;
#ifdef PSXDMA_LOG