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:
arcum42 2009-10-11 09:05:41 +00:00
parent e0cef88d54
commit 7533e00816
1 changed files with 1 additions and 1 deletions

View File

@ -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");