summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-04-06 02:27:34 +0000
committer smf- <smf-@users.noreply.github.com>2013-04-06 02:27:34 +0000
commit225d353f1e0c9d02ca961218219c7399e12e50c3 (patch)
tree980d12a461d83986bdb52af6aeda56d7a284d968
parentf64c2ca7a1c501bbd09999bcfa729076a189dcb7 (diff)
Reduced time before dma interrupt is fired, as it stops incorrect textures being displayed in a few games and the pse bios v2.2. [smf]
-rw-r--r--src/emu/cpu/psx/dma.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/psx/dma.c b/src/emu/cpu/psx/dma.c
index bf44186577b..962cd2db1ea 100644
--- a/src/emu/cpu/psx/dma.c
+++ b/src/emu/cpu/psx/dma.c
@@ -152,7 +152,9 @@ void psxdma_device::dma_finished( int index )
if( n_address == 0xffffff )
{
dma->n_base = n_address;
- dma_start_timer( index, 19000 );
+ //HACK: fixes pse bios 2.x & other texture uploading issues.
+ //dma_start_timer( index, 19000 );
+ dma_start_timer( index, 500 );
return;
}
if( n_total > 65535 )