mirror of https://github.com/PCSX2/pcsx2.git
GS-hw: Fix Wsign-compare warning.
This commit is contained in:
parent
94c75df0d0
commit
d9f537e9dc
|
@ -266,7 +266,7 @@ bool GSHwHack::GSC_TombRaiderUnderWorld(GSRendererHW& r, int& skip)
|
|||
|
||||
bool GSHwHack::GSC_BurnoutGames(GSRendererHW& r, int& skip)
|
||||
{
|
||||
if (RFBW == 2 && std::abs(static_cast<int>(RFBP) - static_cast<int>(RZBP)) <= BLOCKS_PER_PAGE)
|
||||
if (RFBW == 2 && std::abs(static_cast<int>(RFBP) - static_cast<int>(RZBP)) <= static_cast<int>(BLOCKS_PER_PAGE))
|
||||
{
|
||||
skip = 2;
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue