mirror of https://github.com/PCSX2/pcsx2.git
Add NFL '12 to the database and silence a SPU2 cache clear notice.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5430 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
15e7fcba5e
commit
dece4c730c
|
@ -10228,6 +10228,11 @@ Serial = SLUS-21944
|
|||
Name = Dora's Big Birthday Adventure
|
||||
Region = NTSC-U
|
||||
---------------------------------------------
|
||||
Serial = SLUS-21946
|
||||
Name = Madden NFL 12
|
||||
Region = NTSC-U
|
||||
Compat = 5
|
||||
---------------------------------------------
|
||||
Serial = SLUS-27029
|
||||
Name = Disney Sing It [Bundle]
|
||||
Region = NTSC-U
|
||||
|
|
|
@ -80,7 +80,7 @@ __forceinline void spu2M_Write( u32 addr, s16 value )
|
|||
const int cacheIdx = addr / pcm_WordsPerBlock;
|
||||
pcm_cache_data[cacheIdx].Validated = false;
|
||||
|
||||
if(MsgToConsole()) ConLog( "* SPU2-X: PcmCache Block Clear at 0x%x (cacheIdx=0x%x)\n", addr, cacheIdx);
|
||||
if(MsgToConsole() && MsgCache()) ConLog( "* SPU2-X: PcmCache Block Clear at 0x%x (cacheIdx=0x%x)\n", addr, cacheIdx);
|
||||
}
|
||||
*GetMemPtr( addr ) = value;
|
||||
}
|
||||
|
@ -1142,7 +1142,7 @@ static void __fastcall RegWrite_Core( u16 value )
|
|||
break;
|
||||
|
||||
case REG_S_ADMAS:
|
||||
//ConLog("* SPU2-X: Core %d AutoDMAControl set to %d (%d)\n",core,value, Cycles);
|
||||
ConLog("* SPU2-X: Core %d AutoDMAControl set to %d (at cycle %d)\n",core,value, Cycles);
|
||||
thiscore.AutoDMACtrl=value;
|
||||
|
||||
if(value==0)
|
||||
|
|
Loading…
Reference in New Issue