mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-24 21:49:10 +00:00
Remove redundant casts
This commit is contained in:
parent
2e346d7166
commit
c70f54e28b
22 changed files with 85 additions and 85 deletions
|
@ -1439,8 +1439,8 @@ static int SDLCALL render_testUVWrapping(void *arg)
|
|||
|
||||
rect.w = (float)tface->w * 2;
|
||||
rect.h = (float)tface->h * 2;
|
||||
rect.x = (float)(TESTRENDER_SCREEN_W - rect.w) / 2;
|
||||
rect.y = (float)(TESTRENDER_SCREEN_H - rect.h) / 2;
|
||||
rect.x = (TESTRENDER_SCREEN_W - rect.w) / 2;
|
||||
rect.y = (TESTRENDER_SCREEN_H - rect.h) / 2;
|
||||
|
||||
/*
|
||||
* 0--1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue