diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-28 00:30:45 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-28 00:30:45 +0000 |
| commit | dbd09982f83f0869d70e001bca569b7463bf6478 (patch) | |
| tree | f362e69850df867ac9cb4d69d2c3c8ff4222a28c /libpcsxcore | |
| parent | 9564a800f65eb0adbe733cb8953bee97b22df705 (diff) | |
| download | pcsxr-dbd09982f83f0869d70e001bca569b7463bf6478.tar.gz | |
gpu.c
- remove 1.5x chain hack
- wait for someone to do real fix
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@60291 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore')
| -rw-r--r-- | libpcsxcore/gpu.c | 9 |
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
|
