diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-13 18:49:49 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-13 18:49:49 +0000 |
| commit | 3e6907e1cf3bd75f8bbd1d5f964e7ddd437a7d88 (patch) | |
| tree | e28496963085de64cdd6bd452cd8737bb0a6f216 | |
| parent | 717eb57fbb8ff1fb15ca2706917cb55e40595f59 (diff) | |
| download | pcsxr-3e6907e1cf3bd75f8bbd1d5f964e7ddd437a7d88.tar.gz | |
Rockman X3 - mdec.c
- Use longer dma time
- fixes intro movie
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59546 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | libpcsxcore/mdec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libpcsxcore/mdec.c b/libpcsxcore/mdec.c index 77b8374e..53d55524 100644 --- a/libpcsxcore/mdec.c +++ b/libpcsxcore/mdec.c @@ -19,6 +19,10 @@ ***************************************************************************/ #include "mdec.h" +
+
+#define MDEC_BIAS 2.0f
+
#define DSIZE 8 #define DSIZE2 (DSIZE * DSIZE) @@ -553,7 +557,7 @@ void psxDma1(u32 adr, u32 bcr, u32 chcr) { }
/* define the power of mdec */
- MDECOUTDMA_INT(dmacnt); + MDECOUTDMA_INT((int) (dmacnt * MDEC_BIAS)); } } |
