mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Remove warnings of -Wsign-compare
Cast the variable to the coresponding type.
This commit is contained in:
parent
62707986b7
commit
81f8099cc6
5 changed files with 11 additions and 11 deletions
|
@ -567,8 +567,8 @@ void Tev::Indirect(unsigned int stageNum, s32 s, s32 t)
|
|||
|
||||
void Tev::Draw()
|
||||
{
|
||||
ASSERT(Position[0] >= 0 && Position[0] < EFB_WIDTH);
|
||||
ASSERT(Position[1] >= 0 && Position[1] < EFB_HEIGHT);
|
||||
ASSERT(Position[0] >= 0 && Position[0] < s32(EFB_WIDTH));
|
||||
ASSERT(Position[1] >= 0 && Position[1] < s32(EFB_HEIGHT));
|
||||
|
||||
INCSTAT(g_stats.this_frame.tev_pixels_in);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue