mirror of https://github.com/PCSX2/pcsx2.git
Fix minor mistake in my last commit.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1998 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e0cef88d54
commit
7533e00816
|
@ -218,7 +218,7 @@ __forceinline void SIF0Dma()
|
|||
{
|
||||
// Stop if TIE & the IRQ are set, or at the end. (I'll try to convert this to use the tags code later.)
|
||||
//if (((sif0dma->chcr._u32 & 0x80000080) == 0x80000080) || (sif0.end))
|
||||
if ((sif0dma->chcr.TIE & Tag::IRQ(sif0dma->chcr._u32)) || sif0.end)
|
||||
if ((sif0dma->chcr.TIE && Tag::IRQ(sif0dma->chcr._u32)) || sif0.end)
|
||||
{
|
||||
if (sif0.end)
|
||||
SIF_LOG(" EE SIF end");
|
||||
|
|
Loading…
Reference in New Issue