mirror of
https://github.com/encounter/SDL.git
synced 2025-12-19 09:55:29 +00:00
Build warning fixes for gcc-11.3
This commit is contained in:
committed by
Ozkan Sezer
parent
b359282a5c
commit
4e07d4722d
@@ -707,7 +707,7 @@ int rect_testIntersectRectEmpty (void *arg)
|
||||
int rect_testIntersectRectParam(void *arg)
|
||||
{
|
||||
SDL_Rect rectA;
|
||||
SDL_Rect rectB;
|
||||
SDL_Rect rectB = {0};
|
||||
SDL_Rect result;
|
||||
SDL_bool intersection;
|
||||
|
||||
@@ -962,7 +962,7 @@ int rect_testHasIntersectionEmpty (void *arg)
|
||||
int rect_testHasIntersectionParam(void *arg)
|
||||
{
|
||||
SDL_Rect rectA;
|
||||
SDL_Rect rectB;
|
||||
SDL_Rect rectB = {0};
|
||||
SDL_bool intersection;
|
||||
|
||||
/* invalid parameter combinations */
|
||||
|
||||
Reference in New Issue
Block a user