mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-04-16 21:46:03 +02:00
SDL_VideoInit: silence 'may be used uninitialized' warning
src/video/SDL_video.c:475: warning: 'i' may be used uninitialized in this function
This commit is contained in:
parent
45de0a1d13
commit
d80ef3e5f5
@ -492,7 +492,7 @@ SDL_VideoInit(const char *driver_name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Select the proper video driver */
|
/* Select the proper video driver */
|
||||||
index = 0;
|
i = index = 0;
|
||||||
video = NULL;
|
video = NULL;
|
||||||
if (driver_name == NULL) {
|
if (driver_name == NULL) {
|
||||||
driver_name = SDL_getenv("SDL_VIDEODRIVER");
|
driver_name = SDL_getenv("SDL_VIDEODRIVER");
|
||||||
|
Loading…
Reference in New Issue
Block a user