mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-26 12:27:44 +00:00
Remove redundant casts
This commit is contained in:
committed by
Sam Lantinga
parent
2e346d7166
commit
c70f54e28b
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user