mirror of https://github.com/PCSX2/pcsx2.git
Tags.h: 0x8000000 != 0x80000000.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1657 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
685ceb245c
commit
4ce901c47b
|
@ -184,12 +184,12 @@ namespace Tag
|
||||||
|
|
||||||
static __forceinline bool IRQ(u32 *tag)
|
static __forceinline bool IRQ(u32 *tag)
|
||||||
{
|
{
|
||||||
return !!(tag[0] & 0x8000000);
|
return !!(tag[0] >> 31);
|
||||||
}
|
}
|
||||||
|
|
||||||
static __forceinline bool IRQ(u32 tag)
|
static __forceinline bool IRQ(u32 tag)
|
||||||
{
|
{
|
||||||
return !!(tag & 0x8000000);
|
return !!(tag >> 31);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue