Tags.h: 0x8000000 != 0x80000000.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1657 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-08-20 12:27:32 +00:00
parent 685ceb245c
commit 4ce901c47b
1 changed files with 2 additions and 2 deletions

View File

@ -184,12 +184,12 @@ namespace Tag
static __forceinline bool IRQ(u32 *tag)
{
return !!(tag[0] & 0x8000000);
return !!(tag[0] >> 31);
}
static __forceinline bool IRQ(u32 tag)
{
return !!(tag & 0x8000000);
return !!(tag >> 31);
}
}