mirror of https://github.com/PCSX2/pcsx2.git
fix for the annoying msvc warnings
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2334 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
86a75775f3
commit
09cec4a370
|
@ -84,7 +84,7 @@ union tGS_CSR
|
|||
setIntBits(_u64 & ~value._u64);
|
||||
}
|
||||
|
||||
bool interrupts() { return (SIGNAL | FINISH | HSINT | VSINT | EDWINT); }
|
||||
bool interrupts() { return (SIGNAL || FINISH || HSINT || VSINT || EDWINT); }
|
||||
|
||||
void setAllInterrupts(bool value)
|
||||
{
|
||||
|
@ -122,7 +122,7 @@ union tGS_IMR
|
|||
undefined = 0x3; // These should always be set.
|
||||
}
|
||||
|
||||
bool masked() { return (SIGMSK | FINISHMSK | HSMSK | VSMSK | EDWMSK); }
|
||||
bool masked() { return (SIGMSK || FINISHMSK || HSMSK || VSMSK || EDWMSK); }
|
||||
};
|
||||
|
||||
#define PS2MEM_GS g_RealGSMem
|
||||
|
|
Loading…
Reference in New Issue