GS-hw: Fix Wsign-compare warning.

This commit is contained in:
lightningterror 2023-04-11 01:06:15 +02:00
parent 94c75df0d0
commit d9f537e9dc
1 changed files with 1 additions and 1 deletions

View File

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